diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index edb501ae..deab30c6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,9 +70,10 @@ jobs: git push --set-upstream origin ${{steps.branch_name.outputs.BRANCH_NAME}} -f - name: Check if PR exists run: echo "pr_exists=$(gh pr list -H ${{steps.branch_name.outputs.BRANCH_NAME}} --json number -q length)" >> $GITHUB_ENV + env: + GITHUB_TOKEN: ${{ github.token }} - name: Create Pull Request if: ${{env.pr_exists == 0 && steps.fetch_icons.outputs.files_changed == 'true'}} - run: | - gh pr create -B main -H ${{steps.branch_name.outputs.BRANCH_NAME}} --title "${{steps.title.outputs.TITLE}}" --body 'Created by the Zeta Icons bot' + run: gh pr create -B main -H ${{steps.branch_name.outputs.BRANCH_NAME}} --title "${{steps.title.outputs.TITLE}}" --body 'Created by the Zeta Icons bot' env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/copy-content.yml b/.github/workflows/copy-content.yml new file mode 100644 index 00000000..c48f11d0 --- /dev/null +++ b/.github/workflows/copy-content.yml @@ -0,0 +1,87 @@ +name: Copy content to other repository + +on: + workflow_call: + inputs: + repo: + required: true + type: string + branch: + required: true + type: string + source_dir: + required: true + type: string + destination_dir: + required: true + type: string + commit_msg: + required: true + type: string + secrets: + PAT: + required: true + +jobs: + copy_content: + runs-on: ubuntu-latest + steps: + - name: Check if existing tokens branch exists + id: check_branch + env: + GH_TOKEN: ${{ secrets.PAT }} + run: echo "branch_exists=$(gh api repos/${{ inputs.repo }}/branches/${{ inputs.branch }} --jq '.name' | wc -l | xargs)" >> $GITHUB_OUTPUT + - name: Check if open PR exists + id: check_pr + env: + GH_TOKEN: ${{ secrets.PAT }} + run: echo "pr_exists=$(gh pr list -R ${{ inputs.repo }} -H ${{ inputs.branch }} --json number -q length)" >> $GITHUB_OUTPUT + - name: Checkout code + uses: actions/checkout@v4 + - name: Pull latest changes + run: git pull + - name: Get current date + id: date + run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT + - name: Push files if branch exists + uses: dmnemec/copy_file_to_another_repo_action@main + if: ${{ steps.check_branch.outputs.branch_exists != 0 }} + env: + API_TOKEN_GITHUB: ${{ secrets.PAT }} + with: + source_file: ${{ inputs.source_dir }} + destination_repo: ${{ inputs.repo }} + destination_folder: ${{ inputs.destination_dir }} + destination_branch: ${{ inputs.branch }} + user_email: "zeta-tokens-bot@github.com" + user_name: "Zeta Tokens Bot" + commit_message: "deps(automated): ${{inputs.commit_msg}} ${{ steps.date.outputs.date }}" + - name: Push files if branch does not exist + uses: dmnemec/copy_file_to_another_repo_action@main + if: ${{ steps.check_branch.outputs.branch_exists == 0 }} + env: + API_TOKEN_GITHUB: ${{ secrets.PAT }} + with: + source_file: ${{ inputs.source_dir }} + destination_repo: ${{ inputs.repo }} + destination_folder: ${{ inputs.destination_dir }} + destination_branch_create: ${{ inputs.branch }} + user_email: "zeta-tokens-bot@github.com" + user_name: "Zeta Tokens Bot" + commit_message: "deps(automated): ${{inputs.commit_msg}} ${{ steps.date.outputs.date }}" + - name: Open PR + uses: thecanadianroot/open-pull-request-action@v1.1.1 + if: ${{ steps.check_pr.outputs.pr_exists == 0 }} + with: + token: ${{ secrets.PAT }} + base: main + head: ${{ inputs.branch }} + title: "deps(automated): ${{inputs.commit_msg}}" + labels: tokens + body: "${{inputs.commit_msg}} ${{ steps.date.outputs.date }}" + repository: ${{ inputs.repo }} + - name: Add comment to existing PR + env: + GH_TOKEN: ${{ secrets.PAT }} + if: ${{ steps.check_pr.outputs.pr_exists != 0 }} + run: gh pr comment -R ${{ inputs.repo }} ${{ inputs.branch }} --body "${{inputs.commit_msg}} ${{ steps.date.outputs.date }}" diff --git a/.github/workflows/update_zeta_flutter.yml b/.github/workflows/update_zeta_flutter.yml index a25b4ed1..f765189e 100644 --- a/.github/workflows/update_zeta_flutter.yml +++ b/.github/workflows/update_zeta_flutter.yml @@ -9,92 +9,14 @@ on: env: flutter_branch: update-zeta-icons - flutter_repo: ZebraDevs/zeta_flutter jobs: publish_flutter: - runs-on: ubuntu-latest - name: Commit and raise PR in Zeta Flutter - steps: - - name: Check if existing icons branch exists - run: echo "branch_exists=$(git ls-remote --heads https://github.com/${{env.flutter_repo}}.git refs/heads/${{env.flutter_branch}} | wc -l)" >> $GITHUB_ENV - - name: Check if open PR exists - run: echo "pr_exists=$(gh pr list -R ${{env.flutter_repo}} -H ${{env.flutter_branch}} --json number -q length)" >> $GITHUB_ENV - - name: Checkout - uses: actions/checkout@v4 - with: - token: ${{ secrets.PAT }} - ref: ${{github.ref_name}} - - name: Get package version - id: package-version - uses: martinbeentjes/npm-get-version-action@v1.3.1 - - name: Inject version - run: sed -i 's/VERSION_NUM/${{steps.package-version.outputs.current-version}}/g' outputs/definitions/icons.dart - - name: Push dart file to Zeta Flutter (branch exists) - uses: dmnemec/copy_file_to_another_repo_action@main - if: ${{env.branch_exists == 1}} - env: - API_TOKEN_GITHUB: ${{ secrets.PAT }} - with: - #TODO: pass file paths as inputs - source_file: "./outputs/definitions/icons.dart" - destination_repo: "${{env.flutter_repo}}" - destination_folder: "lib/src/assets" - destination_branch: "${{env.flutter_branch}}" - user_email: "zeta-icons-bot@github.com" - user_name: "zeta-icons-bot" - commit_message: "icons.dart" - - name: Push dart file to Zeta Flutter (branch does not exist) - if: ${{env.branch_exists == 0}} - uses: dmnemec/copy_file_to_another_repo_action@main - env: - API_TOKEN_GITHUB: ${{ secrets.PAT }} - with: - #TODO: pass file paths as inputs - source_file: "./outputs/definitions/icons.dart" - destination_repo: "${{env.flutter_repo}}" - destination_folder: "lib/src/assets" - destination_branch_create: "${{env.flutter_branch}}" - user_email: "zeta-icons-bot@github.com" - user_name: "zeta-icons-bot" - commit_message: "icons.dart" - - name: Push round icon font file to Zeta Flutter - uses: dmnemec/copy_file_to_another_repo_action@main - env: - API_TOKEN_GITHUB: ${{ secrets.PAT }} - with: - source_file: "./outputs/font/zeta-icons-round.ttf" - destination_repo: "${{env.flutter_repo}}" - destination_folder: "lib/src/assets/fonts" - destination_branch: "${{env.flutter_branch}}" - user_email: "zeta-icons-bot@github.com" - user_name: "zeta-icons-bot" - commit_message: "rounded font file" - - name: Push sharp icon font file to Zeta Flutter - uses: dmnemec/copy_file_to_another_repo_action@main - env: - API_TOKEN_GITHUB: ${{ secrets.PAT }} - with: - source_file: "./outputs/font/zeta-icons-sharp.ttf" - destination_repo: "${{env.flutter_repo}}" - destination_folder: "lib/src/assets/fonts" - destination_branch: "${{env.flutter_branch}}" - user_email: "zeta-icons-bot@github.com" - user_name: "zeta-icons-bot" - commit_message: "sharp font file" - - name: Create PR message - run: echo "pr_message=Updating to icons version ${{ steps.package-version.outputs.current-version }}" >> $GITHUB_ENV - - name: Open Zeta Flutter PR - uses: thecanadianroot/open-pull-request-action@v1.1.1 - if: ${{env.pr_exists == 0}} - with: - token: ${{ secrets.PAT }} - base: main - head: ${{env.flutter_branch}} - title: "deps: Update zeta-icon library" - labels: icons - body: "${{env.pr_message}}" - repository: ${{env.flutter_repo}} - - name: Add comment to existing PR - if: ${{env.pr_exists != 0}} - run: gh pr comment -R ${{env.flutter_repo}} ${{env.flutter_branch}} --body '${{env.pr_message}}' + uses: ./.github/workflows/copy-content.yml + secrets: inherit + with: + repo: ZebraDevs/zeta_flutter + branch: "update-zeta-icons" + source_dir: "./outputs/dart/." + destination_dir: "lib/generated/icons" + commit_msg: "Update icons" diff --git a/outputs/definitions/icon-types.ts b/outputs/definitions/icon-types.ts deleted file mode 100644 index 6bd7a06c..00000000 --- a/outputs/definitions/icon-types.ts +++ /dev/null @@ -1,1077 +0,0 @@ -export const ZetaIconNameList = [ - "activity", - "add_alert", - "add_box", - "add_call", - "add_circle_outline", - "add_circle", - "add_group", - "add_person", - "add", - "add_task", - "adjustments", - "alarm", - "alert_active", - "alert_outline", - "alert", - "align_center", - "align_horizontal_center", - "align_horizontal_left", - "align_horizontal_right", - "align_left", - "align_right", - "align_vertical_bottom", - "align_vertical_center", - "align_vertical_top", - "analytics", - "android", - "antenna", - "app_edit", - "apps", - "ar", - "arrow_back", - "arrow_down", - "arrow_forward", - "arrow_up", - "attachment", - "audio", - "audit_activity", - "auto_delete", - "auto", - "awb", - "backspace", - "bad_mood", - "barcode_bluetooth", - "barcode_done", - "barcode_image_scan", - "barcode_qr_code", - "barcode", - "barcode_scanner_down", - "barcode_settings", - "basket", - "battery_alert", - "battery_charging", - "battery", - "block_content", - "block", - "blog", - "bluetooth_disabled", - "bluetooth", - "bluetooth_searching", - "bold", - "bookmark_outline", - "bookmark", - "brightness", - "broadcast", - "build", - "building", - "bullet_list", - "bus", - "cached", - "cafe", - "calculator", - "calendar_3_day", - "calendar_alt_1", - "calendar_alt_2", - "calendar_available", - "calendar_day", - "calendar_edit", - "calendar_gantt", - "calendar_monthly", - "calendar_next", - "calendar_range", - "calendar_rollover", - "calendar", - "calendar_unavailable", - "calendar_weekly", - "calendar_yearly", - "call_back", - "camera", - "camera_shutter", - "camera_switch_image", - "camera_switch", - "cancel_outline", - "cancel", - "car", - "card_orientation", - "card_with_chip", - "caret_down", - "caret_left", - "caret_right", - "caret_sort", - "caret_up", - "cast_connected", - "cast", - "cellular_signal", - "certificate", - "certified", - "chain", - "chart_bar", - "chart_bubble_charts", - "chart_bubble", - "chart_doughnut", - "chart_filled_enterprise", - "chart_filled", - "chart_gantt", - "chart_line_predict", - "chart_line", - "chart_line_stacked", - "chart_outline", - "chart_pie_charts", - "chart_pie_content", - "chart_pie", - "chart_scatter_plot", - "chart_stacked", - "chart_waterfall", - "chat_bot", - "chat_bubble_outline", - "chat_bubble", - "chat_message_read", - "chat_message_unread", - "chat", - "chat_search", - "check_box_empty", - "check_box", - "check_circle_outline_alt", - "check_circle_outline", - "check_circle", - "check_mark", - "checklist", - "chevron_left", - "chevron_right", - "choices", - "clipboard_action", - "clipboard", - "clock_available", - "clock_bid", - "clock_edit", - "clock_flexible", - "clock_in_progress", - "clock_info", - "clock_missed", - "clock_on", - "clock_outline", - "clock_rollover", - "clock", - "clock_segment", - "clock_start", - "clock_stop", - "clock_switch", - "clock_timer", - "clock_upcoming", - "close", - "closed_caption", - "cloud_done", - "cloud_download", - "cloud_off", - "cloud_outline", - "cloud", - "cloud_upload", - "color_fill", - "columns", - "contactless_pay", - "content", - "contrast_image", - "contrast", - "conversation", - "copy_file", - "create_new_folder", - "credit_card", - "credit_card_swipe", - "crop", - "dark_mode", - "dashboard", - "delete_forever", - "delete_outline", - "delete", - "desktop", - "device_settings", - "devices_ecosystem", - "devices", - "dialpad", - "dislike", - "distribute_horizontal", - "distribute_vertical", - "doc_attach", - "document", - "dollar", - "download", - "downloading", - "drop_down_circle", - "eas", - "edit_border", - "edit", - "email_alt", - "email_outline", - "email_reply_all", - "email", - "end_call", - "enterprise_diagnostics", - "environmental", - "error_outline", - "error", - "ethernet", - "exit", - "expand_less", - "expand_more", - "eye_dropper", - "eye_preview", - "face_id", - "facebook", - "factory", - "fast_forward", - "fast_rewind", - "file", - "filter_alt", - "filter", - "finished_download", - "first_page", - "flag", - "flight_mode", - "flight", - "flip", - "folder_file", - "folder_outline", - "folder", - "font_size_decrease", - "font_size_increase", - "format_shapes", - "forward", - "freezer", - "full_screen_exit", - "full_screen", - "gif", - "glossary", - "grid_off", - "grid_on", - "grid_view", - "group", - "groups", - "hamburger_menu_navigation_rail", - "hamburger_menu", - "hamburger_menu_thick", - "hand", - "happy", - "hdmi", - "hdr", - "headphones", - "headset", - "help_outline", - "help", - "history", - "home", - "hourglass", - "how_do_i", - "image_library", - "image", - "important_notification", - "inbox", - "indent_decrease", - "indent_increase", - "indeterminate_check_box", - "info", - "instagram", - "ios_share", - "iso", - "issue_audit", - "italic", - "jpg_attach", - "justify", - "keyboard", - "label", - "laptop", - "last_page", - "layers", - "light_mode", - "light_rail_train", - "lightbulb", - "like", - "line_spacing", - "link_add", - "link", - "linkedin", - "list_alt", - "list_bullet_contained", - "list_feedback", - "list_form", - "list", - "local_shipping", - "location_off", - "location_point", - "location", - "lock_alt", - "lock", - "lock_undo", - "log_in", - "log_out", - "love_outline", - "love", - "maintenance", - "map", - "meal", - "medium", - "memory", - "message", - "microphone_off", - "microphone_outline", - "microphone", - "mobile_friendly", - "money_euro", - "money_pound", - "money_usd", - "monitor", - "more_horizontal", - "more_vertical", - "my_location", - "navigate", - "navigation", - "near_me", - "network_signal", - "new_chat", - "nfc", - "night", - "no_color", - "note", - "notifications_off", - "numbered_list", - "open_in_full", - "open_in_new_window", - "open_new_off", - "page_height", - "page_rotate", - "page_width", - "palette", - "partner", - "pause_circle", - "pause", - "pdf_attach", - "pending", - "person_admin", - "person_assign", - "person_clock", - "person_info", - "person_manager", - "person_move", - "person_outline", - "person", - "person_search", - "person_swap", - "person_walk", - "phone_android", - "phone_bluetooth_speaker", - "phone_in_talk", - "phone_iphone", - "phone", - "phonelink", - "phrase", - "pin", - "place", - "planogram", - "play_circle", - "play_outline", - "play", - "png_attach", - "point_gift", - "point_heart", - "point_money", - "point_star", - "point_token", - "portrait", - "ppt_attach", - "price", - "printer", - "priority", - "pro", - "productivity_apps", - "ptt", - "publish", - "push_pin", - "qr_code", - "queue", - "radio_button_checked", - "radio_button_unchecked", - "react_add", - "react_thumbsup", - "recall", - "receipt", - "recording", - "redo", - "refresh", - "remove_box", - "remove_circle_outline", - "remove_circle", - "remove_group", - "remove_person", - "remove", - "renew", - "reorder", - "repeat", - "replay", - "reply", - "report", - "restart_alt", - "review", - "road_map", - "rotate_left", - "rotate_right", - "rss_feed", - "rules", - "sad", - "satisfied", - "save_alt", - "save_content", - "save", - "scan_rate", - "scanner", - "schedule", - "school", - "screen_rotation", - "sd_card", - "search", - "security_check", - "security", - "send", - "settings", - "shape_recognition", - "share", - "shared_folder", - "ship", - "sim_card", - "skip_next", - "skip_previous", - "slide_show", - "smart_phone", - "sms", - "snooze", - "solutions", - "sort_content", - "sort", - "speaker", - "star_half", - "star_outline", - "star", - "steps", - "sticker", - "stop_circle", - "stop", - "store_release", - "store", - "store_swap", - "store_transfer", - "straighten", - "strategy", - "strikethrough", - "subscribe", - "swap", - "switch_user", - "sync_action", - "sync_disabled", - "sync", - "table", - "tablet_mac", - "tablet", - "tag_enterprise", - "tag", - "tap_to_pay", - "taxi", - "text_color", - "tiers", - "timecard_approve", - "timecard", - "timecard_warning", - "timer", - "toggle_off", - "toggle_on", - "touch", - "train", - "transfer", - "trending_down", - "trending_up", - "tv", - "twitter", - "type", - "uhf_rfid", - "underline", - "undo", - "unfold_less", - "unfold_more", - "unlock_alt", - "unlock", - "unsubscribe", - "update", - "upload_file", - "upload", - "usb_alt_device", - "usb_alt", - "usb", - "user_circle", - "user_minor", - "user", - "user_settings", - "vacation", - "verified", - "very_satisfied", - "video_camera", - "video_off", - "video_play", - "video", - "visibility_off", - "visibility", - "volte", - "volume_down", - "volume_mute", - "volume_off", - "volume_up", - "warning_outline", - "warning", - "watch", - "wb_image", - "wb", - "world_action", - "world", - "write", - "youtube", - "zero_scale", - "zoom_in_map", - "zoom_in", - "zoom_out_map", - "zoom_out" -]; - -export type ZetaIconName = "activity" - | "add_alert" - | "add_box" - | "add_call" - | "add_circle_outline" - | "add_circle" - | "add_group" - | "add_person" - | "add" - | "add_task" - | "adjustments" - | "alarm" - | "alert_active" - | "alert_outline" - | "alert" - | "align_center" - | "align_horizontal_center" - | "align_horizontal_left" - | "align_horizontal_right" - | "align_left" - | "align_right" - | "align_vertical_bottom" - | "align_vertical_center" - | "align_vertical_top" - | "analytics" - | "android" - | "antenna" - | "app_edit" - | "apps" - | "ar" - | "arrow_back" - | "arrow_down" - | "arrow_forward" - | "arrow_up" - | "attachment" - | "audio" - | "audit_activity" - | "auto_delete" - | "auto" - | "awb" - | "backspace" - | "bad_mood" - | "barcode_bluetooth" - | "barcode_done" - | "barcode_image_scan" - | "barcode_qr_code" - | "barcode" - | "barcode_scanner_down" - | "barcode_settings" - | "basket" - | "battery_alert" - | "battery_charging" - | "battery" - | "block_content" - | "block" - | "blog" - | "bluetooth_disabled" - | "bluetooth" - | "bluetooth_searching" - | "bold" - | "bookmark_outline" - | "bookmark" - | "brightness" - | "broadcast" - | "build" - | "building" - | "bullet_list" - | "bus" - | "cached" - | "cafe" - | "calculator" - | "calendar_3_day" - | "calendar_alt_1" - | "calendar_alt_2" - | "calendar_available" - | "calendar_day" - | "calendar_edit" - | "calendar_gantt" - | "calendar_monthly" - | "calendar_next" - | "calendar_range" - | "calendar_rollover" - | "calendar" - | "calendar_unavailable" - | "calendar_weekly" - | "calendar_yearly" - | "call_back" - | "camera" - | "camera_shutter" - | "camera_switch_image" - | "camera_switch" - | "cancel_outline" - | "cancel" - | "car" - | "card_orientation" - | "card_with_chip" - | "caret_down" - | "caret_left" - | "caret_right" - | "caret_sort" - | "caret_up" - | "cast_connected" - | "cast" - | "cellular_signal" - | "certificate" - | "certified" - | "chain" - | "chart_bar" - | "chart_bubble_charts" - | "chart_bubble" - | "chart_doughnut" - | "chart_filled_enterprise" - | "chart_filled" - | "chart_gantt" - | "chart_line_predict" - | "chart_line" - | "chart_line_stacked" - | "chart_outline" - | "chart_pie_charts" - | "chart_pie_content" - | "chart_pie" - | "chart_scatter_plot" - | "chart_stacked" - | "chart_waterfall" - | "chat_bot" - | "chat_bubble_outline" - | "chat_bubble" - | "chat_message_read" - | "chat_message_unread" - | "chat" - | "chat_search" - | "check_box_empty" - | "check_box" - | "check_circle_outline_alt" - | "check_circle_outline" - | "check_circle" - | "check_mark" - | "checklist" - | "chevron_left" - | "chevron_right" - | "choices" - | "clipboard_action" - | "clipboard" - | "clock_available" - | "clock_bid" - | "clock_edit" - | "clock_flexible" - | "clock_in_progress" - | "clock_info" - | "clock_missed" - | "clock_on" - | "clock_outline" - | "clock_rollover" - | "clock" - | "clock_segment" - | "clock_start" - | "clock_stop" - | "clock_switch" - | "clock_timer" - | "clock_upcoming" - | "close" - | "closed_caption" - | "cloud_done" - | "cloud_download" - | "cloud_off" - | "cloud_outline" - | "cloud" - | "cloud_upload" - | "color_fill" - | "columns" - | "contactless_pay" - | "content" - | "contrast_image" - | "contrast" - | "conversation" - | "copy_file" - | "create_new_folder" - | "credit_card" - | "credit_card_swipe" - | "crop" - | "dark_mode" - | "dashboard" - | "delete_forever" - | "delete_outline" - | "delete" - | "desktop" - | "device_settings" - | "devices_ecosystem" - | "devices" - | "dialpad" - | "dislike" - | "distribute_horizontal" - | "distribute_vertical" - | "doc_attach" - | "document" - | "dollar" - | "download" - | "downloading" - | "drop_down_circle" - | "eas" - | "edit_border" - | "edit" - | "email_alt" - | "email_outline" - | "email_reply_all" - | "email" - | "end_call" - | "enterprise_diagnostics" - | "environmental" - | "error_outline" - | "error" - | "ethernet" - | "exit" - | "expand_less" - | "expand_more" - | "eye_dropper" - | "eye_preview" - | "face_id" - | "facebook" - | "factory" - | "fast_forward" - | "fast_rewind" - | "file" - | "filter_alt" - | "filter" - | "finished_download" - | "first_page" - | "flag" - | "flight_mode" - | "flight" - | "flip" - | "folder_file" - | "folder_outline" - | "folder" - | "font_size_decrease" - | "font_size_increase" - | "format_shapes" - | "forward" - | "freezer" - | "full_screen_exit" - | "full_screen" - | "gif" - | "glossary" - | "grid_off" - | "grid_on" - | "grid_view" - | "group" - | "groups" - | "hamburger_menu_navigation_rail" - | "hamburger_menu" - | "hamburger_menu_thick" - | "hand" - | "happy" - | "hdmi" - | "hdr" - | "headphones" - | "headset" - | "help_outline" - | "help" - | "history" - | "home" - | "hourglass" - | "how_do_i" - | "image_library" - | "image" - | "important_notification" - | "inbox" - | "indent_decrease" - | "indent_increase" - | "indeterminate_check_box" - | "info" - | "instagram" - | "ios_share" - | "iso" - | "issue_audit" - | "italic" - | "jpg_attach" - | "justify" - | "keyboard" - | "label" - | "laptop" - | "last_page" - | "layers" - | "light_mode" - | "light_rail_train" - | "lightbulb" - | "like" - | "line_spacing" - | "link_add" - | "link" - | "linkedin" - | "list_alt" - | "list_bullet_contained" - | "list_feedback" - | "list_form" - | "list" - | "local_shipping" - | "location_off" - | "location_point" - | "location" - | "lock_alt" - | "lock" - | "lock_undo" - | "log_in" - | "log_out" - | "love_outline" - | "love" - | "maintenance" - | "map" - | "meal" - | "medium" - | "memory" - | "message" - | "microphone_off" - | "microphone_outline" - | "microphone" - | "mobile_friendly" - | "money_euro" - | "money_pound" - | "money_usd" - | "monitor" - | "more_horizontal" - | "more_vertical" - | "my_location" - | "navigate" - | "navigation" - | "near_me" - | "network_signal" - | "new_chat" - | "nfc" - | "night" - | "no_color" - | "note" - | "notifications_off" - | "numbered_list" - | "open_in_full" - | "open_in_new_window" - | "open_new_off" - | "page_height" - | "page_rotate" - | "page_width" - | "palette" - | "partner" - | "pause_circle" - | "pause" - | "pdf_attach" - | "pending" - | "person_admin" - | "person_assign" - | "person_clock" - | "person_info" - | "person_manager" - | "person_move" - | "person_outline" - | "person" - | "person_search" - | "person_swap" - | "person_walk" - | "phone_android" - | "phone_bluetooth_speaker" - | "phone_in_talk" - | "phone_iphone" - | "phone" - | "phonelink" - | "phrase" - | "pin" - | "place" - | "planogram" - | "play_circle" - | "play_outline" - | "play" - | "png_attach" - | "point_gift" - | "point_heart" - | "point_money" - | "point_star" - | "point_token" - | "portrait" - | "ppt_attach" - | "price" - | "printer" - | "priority" - | "pro" - | "productivity_apps" - | "ptt" - | "publish" - | "push_pin" - | "qr_code" - | "queue" - | "radio_button_checked" - | "radio_button_unchecked" - | "react_add" - | "react_thumbsup" - | "recall" - | "receipt" - | "recording" - | "redo" - | "refresh" - | "remove_box" - | "remove_circle_outline" - | "remove_circle" - | "remove_group" - | "remove_person" - | "remove" - | "renew" - | "reorder" - | "repeat" - | "replay" - | "reply" - | "report" - | "restart_alt" - | "review" - | "road_map" - | "rotate_left" - | "rotate_right" - | "rss_feed" - | "rules" - | "sad" - | "satisfied" - | "save_alt" - | "save_content" - | "save" - | "scan_rate" - | "scanner" - | "schedule" - | "school" - | "screen_rotation" - | "sd_card" - | "search" - | "security_check" - | "security" - | "send" - | "settings" - | "shape_recognition" - | "share" - | "shared_folder" - | "ship" - | "sim_card" - | "skip_next" - | "skip_previous" - | "slide_show" - | "smart_phone" - | "sms" - | "snooze" - | "solutions" - | "sort_content" - | "sort" - | "speaker" - | "star_half" - | "star_outline" - | "star" - | "steps" - | "sticker" - | "stop_circle" - | "stop" - | "store_release" - | "store" - | "store_swap" - | "store_transfer" - | "straighten" - | "strategy" - | "strikethrough" - | "subscribe" - | "swap" - | "switch_user" - | "sync_action" - | "sync_disabled" - | "sync" - | "table" - | "tablet_mac" - | "tablet" - | "tag_enterprise" - | "tag" - | "tap_to_pay" - | "taxi" - | "text_color" - | "tiers" - | "timecard_approve" - | "timecard" - | "timecard_warning" - | "timer" - | "toggle_off" - | "toggle_on" - | "touch" - | "train" - | "transfer" - | "trending_down" - | "trending_up" - | "tv" - | "twitter" - | "type" - | "uhf_rfid" - | "underline" - | "undo" - | "unfold_less" - | "unfold_more" - | "unlock_alt" - | "unlock" - | "unsubscribe" - | "update" - | "upload_file" - | "upload" - | "usb_alt_device" - | "usb_alt" - | "usb" - | "user_circle" - | "user_minor" - | "user" - | "user_settings" - | "vacation" - | "verified" - | "very_satisfied" - | "video_camera" - | "video_off" - | "video_play" - | "video" - | "visibility_off" - | "visibility" - | "volte" - | "volume_down" - | "volume_mute" - | "volume_off" - | "volume_up" - | "warning_outline" - | "warning" - | "watch" - | "wb_image" - | "wb" - | "world_action" - | "world" - | "write" - | "youtube" - | "zero_scale" - | "zoom_in_map" - | "zoom_in" - | "zoom_out_map" - | "zoom_out"; diff --git a/outputs/definitions/icons.dart b/outputs/definitions/icons.dart deleted file mode 100644 index 579a9198..00000000 --- a/outputs/definitions/icons.dart +++ /dev/null @@ -1,3784 +0,0 @@ -// ignore_for_file: public_member_api_docs, constant_identifier_names -import 'package:flutter/material.dart'; - -// This file is automatically generated by the zeta-icons repository -// DO NOT MODIFY - -const zetaIconsVersion = 'VERSION_NUM'; - -/// Zeta Icons. Full list of icons can be found at [Zeta Icons](https://zeta-icons.web.app/). -abstract class ZetaIcons { - static const String family = 'zeta-icons'; - static const String familyRound = 'zeta-icons-round'; - static const String familySharp = 'zeta-icons-sharp'; - static const String package = 'zeta_flutter'; - - // Icons - ///
Activity icon
- static const IconData activity = IconData(0xe001, fontFamily: family, fontPackage: package); - ///
Add Alert icon
- static const IconData add_alert = IconData(0xe002, fontFamily: family, fontPackage: package); - ///
Add Box icon
- static const IconData add_box = IconData(0xe003, fontFamily: family, fontPackage: package); - ///
Add Call icon
- static const IconData add_call = IconData(0xe004, fontFamily: family, fontPackage: package); - ///
Add Circle Outline icon
- static const IconData add_circle_outline = IconData(0xe005, fontFamily: family, fontPackage: package); - ///
Add Circle icon
- static const IconData add_circle = IconData(0xe006, fontFamily: family, fontPackage: package); - ///
Add Group icon
- static const IconData add_group = IconData(0xe007, fontFamily: family, fontPackage: package); - ///
Add Person icon
- static const IconData add_person = IconData(0xe008, fontFamily: family, fontPackage: package); - ///
Add icon
- static const IconData add = IconData(0xe009, fontFamily: family, fontPackage: package); - ///
Add Task icon
- static const IconData add_task = IconData(0xe00a, fontFamily: family, fontPackage: package); - ///
Adjustments icon
- static const IconData adjustments = IconData(0xe00b, fontFamily: family, fontPackage: package); - ///
Alarm icon
- static const IconData alarm = IconData(0xe00c, fontFamily: family, fontPackage: package); - ///
Alert Active icon
- static const IconData alert_active = IconData(0xe00d, fontFamily: family, fontPackage: package); - ///
Alert Outline icon
- static const IconData alert_outline = IconData(0xe00e, fontFamily: family, fontPackage: package); - ///
Alert icon
- static const IconData alert = IconData(0xe00f, fontFamily: family, fontPackage: package); - ///
Align Center icon
- static const IconData align_center = IconData(0xe010, fontFamily: family, fontPackage: package); - ///
Align Horizontal Center icon
- static const IconData align_horizontal_center = IconData(0xe011, fontFamily: family, fontPackage: package); - ///
Align Horizontal Left icon
- static const IconData align_horizontal_left = IconData(0xe012, fontFamily: family, fontPackage: package); - ///
Align Horizontal Right icon
- static const IconData align_horizontal_right = IconData(0xe013, fontFamily: family, fontPackage: package); - ///
Align Left icon
- static const IconData align_left = IconData(0xe014, fontFamily: family, fontPackage: package); - ///
Align Right icon
- static const IconData align_right = IconData(0xe015, fontFamily: family, fontPackage: package); - ///
Align Vertical Bottom icon
- static const IconData align_vertical_bottom = IconData(0xe016, fontFamily: family, fontPackage: package); - ///
Align Vertical Center icon
- static const IconData align_vertical_center = IconData(0xe017, fontFamily: family, fontPackage: package); - ///
Align Vertical Top icon
- static const IconData align_vertical_top = IconData(0xe018, fontFamily: family, fontPackage: package); - ///
Analytics icon
- static const IconData analytics = IconData(0xe019, fontFamily: family, fontPackage: package); - ///
Android icon
- static const IconData android = IconData(0xe01a, fontFamily: family, fontPackage: package); - ///
Antenna icon
- static const IconData antenna = IconData(0xe01b, fontFamily: family, fontPackage: package); - ///
App Edit icon
- static const IconData app_edit = IconData(0xe01c, fontFamily: family, fontPackage: package); - ///
Apps icon
- static const IconData apps = IconData(0xe01d, fontFamily: family, fontPackage: package); - ///
Ar icon
- static const IconData ar = IconData(0xe01e, fontFamily: family, fontPackage: package); - ///
Arrow Back icon
- static const IconData arrow_back = IconData(0xe01f, fontFamily: family, fontPackage: package); - ///
Arrow Down icon
- static const IconData arrow_down = IconData(0xe020, fontFamily: family, fontPackage: package); - ///
Arrow Forward icon
- static const IconData arrow_forward = IconData(0xe021, fontFamily: family, fontPackage: package); - ///
Arrow Up icon
- static const IconData arrow_up = IconData(0xe022, fontFamily: family, fontPackage: package); - ///
Attachment icon
- static const IconData attachment = IconData(0xe023, fontFamily: family, fontPackage: package); - ///
Audio icon
- static const IconData audio = IconData(0xe024, fontFamily: family, fontPackage: package); - ///
Audit Activity icon
- static const IconData audit_activity = IconData(0xe025, fontFamily: family, fontPackage: package); - ///
Auto Delete icon
- static const IconData auto_delete = IconData(0xe026, fontFamily: family, fontPackage: package); - ///
Auto icon
- static const IconData auto = IconData(0xe027, fontFamily: family, fontPackage: package); - ///
Awb icon
- static const IconData awb = IconData(0xe028, fontFamily: family, fontPackage: package); - ///
Backspace icon
- static const IconData backspace = IconData(0xe029, fontFamily: family, fontPackage: package); - ///
Bad Mood icon
- static const IconData bad_mood = IconData(0xe02a, fontFamily: family, fontPackage: package); - ///
Barcode Bluetooth icon
- static const IconData barcode_bluetooth = IconData(0xe02b, fontFamily: family, fontPackage: package); - ///
Barcode Done icon
- static const IconData barcode_done = IconData(0xe02c, fontFamily: family, fontPackage: package); - ///
Barcode Image Scan icon
- static const IconData barcode_image_scan = IconData(0xe02d, fontFamily: family, fontPackage: package); - ///
Barcode Qr Code icon
- static const IconData barcode_qr_code = IconData(0xe02e, fontFamily: family, fontPackage: package); - ///
Barcode icon
- static const IconData barcode = IconData(0xe02f, fontFamily: family, fontPackage: package); - ///
Barcode Scanner Down icon
- static const IconData barcode_scanner_down = IconData(0xe030, fontFamily: family, fontPackage: package); - ///
Barcode Settings icon
- static const IconData barcode_settings = IconData(0xe031, fontFamily: family, fontPackage: package); - ///
Basket icon
- static const IconData basket = IconData(0xe032, fontFamily: family, fontPackage: package); - ///
Battery Alert icon
- static const IconData battery_alert = IconData(0xe033, fontFamily: family, fontPackage: package); - ///
Battery Charging icon
- static const IconData battery_charging = IconData(0xe034, fontFamily: family, fontPackage: package); - ///
Battery icon
- static const IconData battery = IconData(0xe035, fontFamily: family, fontPackage: package); - ///
Block Content icon
- static const IconData block_content = IconData(0xe036, fontFamily: family, fontPackage: package); - ///
Block icon
- static const IconData block = IconData(0xe037, fontFamily: family, fontPackage: package); - ///
Blog icon
- static const IconData blog = IconData(0xe038, fontFamily: family, fontPackage: package); - ///
Bluetooth Disabled icon
- static const IconData bluetooth_disabled = IconData(0xe039, fontFamily: family, fontPackage: package); - ///
Bluetooth icon
- static const IconData bluetooth = IconData(0xe03a, fontFamily: family, fontPackage: package); - ///
Bluetooth Searching icon
- static const IconData bluetooth_searching = IconData(0xe03b, fontFamily: family, fontPackage: package); - ///
Bold icon
- static const IconData bold = IconData(0xe03c, fontFamily: family, fontPackage: package); - ///
Bookmark Outline icon
- static const IconData bookmark_outline = IconData(0xe03d, fontFamily: family, fontPackage: package); - ///
Bookmark icon
- static const IconData bookmark = IconData(0xe03e, fontFamily: family, fontPackage: package); - ///
Brightness icon
- static const IconData brightness = IconData(0xe03f, fontFamily: family, fontPackage: package); - ///
Broadcast icon
- static const IconData broadcast = IconData(0xe040, fontFamily: family, fontPackage: package); - ///
Build icon
- static const IconData build = IconData(0xe041, fontFamily: family, fontPackage: package); - ///
Building icon
- static const IconData building = IconData(0xe042, fontFamily: family, fontPackage: package); - ///
Bullet List icon
- static const IconData bullet_list = IconData(0xe043, fontFamily: family, fontPackage: package); - ///
Bus icon
- static const IconData bus = IconData(0xe044, fontFamily: family, fontPackage: package); - ///
Cached icon
- static const IconData cached = IconData(0xe045, fontFamily: family, fontPackage: package); - ///
Cafe icon
- static const IconData cafe = IconData(0xe046, fontFamily: family, fontPackage: package); - ///
Calculator icon
- static const IconData calculator = IconData(0xe047, fontFamily: family, fontPackage: package); - ///
Calendar 3 Day icon
- static const IconData calendar_3_day = IconData(0xe048, fontFamily: family, fontPackage: package); - ///
Calendar Alt 1 icon
- static const IconData calendar_alt_1 = IconData(0xe049, fontFamily: family, fontPackage: package); - ///
Calendar Alt 2 icon
- static const IconData calendar_alt_2 = IconData(0xe04a, fontFamily: family, fontPackage: package); - ///
Calendar Available icon
- static const IconData calendar_available = IconData(0xe04b, fontFamily: family, fontPackage: package); - ///
Calendar Day icon
- static const IconData calendar_day = IconData(0xe04c, fontFamily: family, fontPackage: package); - ///
Calendar Edit icon
- static const IconData calendar_edit = IconData(0xe04d, fontFamily: family, fontPackage: package); - ///
Calendar Gantt icon
- static const IconData calendar_gantt = IconData(0xe04e, fontFamily: family, fontPackage: package); - ///
Calendar Monthly icon
- static const IconData calendar_monthly = IconData(0xe04f, fontFamily: family, fontPackage: package); - ///
Calendar Next icon
- static const IconData calendar_next = IconData(0xe050, fontFamily: family, fontPackage: package); - ///
Calendar Range icon
- static const IconData calendar_range = IconData(0xe051, fontFamily: family, fontPackage: package); - ///
Calendar Rollover icon
- static const IconData calendar_rollover = IconData(0xe052, fontFamily: family, fontPackage: package); - ///
Calendar icon
- static const IconData calendar = IconData(0xe053, fontFamily: family, fontPackage: package); - ///
Calendar Unavailable icon
- static const IconData calendar_unavailable = IconData(0xe054, fontFamily: family, fontPackage: package); - ///
Calendar Weekly icon
- static const IconData calendar_weekly = IconData(0xe055, fontFamily: family, fontPackage: package); - ///
Calendar Yearly icon
- static const IconData calendar_yearly = IconData(0xe056, fontFamily: family, fontPackage: package); - ///
Call Back icon
- static const IconData call_back = IconData(0xe057, fontFamily: family, fontPackage: package); - ///
Camera icon
- static const IconData camera = IconData(0xe058, fontFamily: family, fontPackage: package); - ///
Camera Shutter icon
- static const IconData camera_shutter = IconData(0xe059, fontFamily: family, fontPackage: package); - ///
Camera Switch Image icon
- static const IconData camera_switch_image = IconData(0xe05a, fontFamily: family, fontPackage: package); - ///
Camera Switch icon
- static const IconData camera_switch = IconData(0xe05b, fontFamily: family, fontPackage: package); - ///
Cancel Outline icon
- static const IconData cancel_outline = IconData(0xe05c, fontFamily: family, fontPackage: package); - ///
Cancel icon
- static const IconData cancel = IconData(0xe05d, fontFamily: family, fontPackage: package); - ///
Car icon
- static const IconData car = IconData(0xe05e, fontFamily: family, fontPackage: package); - ///
Card Orientation icon
- static const IconData card_orientation = IconData(0xe05f, fontFamily: family, fontPackage: package); - ///
Card With Chip icon
- static const IconData card_with_chip = IconData(0xe060, fontFamily: family, fontPackage: package); - ///
Caret Down icon
- static const IconData caret_down = IconData(0xe061, fontFamily: family, fontPackage: package); - ///
Caret Left icon
- static const IconData caret_left = IconData(0xe062, fontFamily: family, fontPackage: package); - ///
Caret Right icon
- static const IconData caret_right = IconData(0xe063, fontFamily: family, fontPackage: package); - ///
Caret Sort icon
- static const IconData caret_sort = IconData(0xe064, fontFamily: family, fontPackage: package); - ///
Caret Up icon
- static const IconData caret_up = IconData(0xe065, fontFamily: family, fontPackage: package); - ///
Cast Connected icon
- static const IconData cast_connected = IconData(0xe066, fontFamily: family, fontPackage: package); - ///
Cast icon
- static const IconData cast = IconData(0xe067, fontFamily: family, fontPackage: package); - ///
Cellular Signal icon
- static const IconData cellular_signal = IconData(0xe068, fontFamily: family, fontPackage: package); - ///
Certificate icon
- static const IconData certificate = IconData(0xe069, fontFamily: family, fontPackage: package); - ///
Certified icon
- static const IconData certified = IconData(0xe06a, fontFamily: family, fontPackage: package); - ///
Chain icon
- static const IconData chain = IconData(0xe06b, fontFamily: family, fontPackage: package); - ///
Chart Bar icon
- static const IconData chart_bar = IconData(0xe06c, fontFamily: family, fontPackage: package); - ///
Chart Bubble Charts icon
- static const IconData chart_bubble_charts = IconData(0xe06d, fontFamily: family, fontPackage: package); - ///
Chart Bubble icon
- static const IconData chart_bubble = IconData(0xe06e, fontFamily: family, fontPackage: package); - ///
Chart Doughnut icon
- static const IconData chart_doughnut = IconData(0xe06f, fontFamily: family, fontPackage: package); - ///
Chart Filled Enterprise icon
- static const IconData chart_filled_enterprise = IconData(0xe070, fontFamily: family, fontPackage: package); - ///
Chart Filled icon
- static const IconData chart_filled = IconData(0xe071, fontFamily: family, fontPackage: package); - ///
Chart Gantt icon
- static const IconData chart_gantt = IconData(0xe072, fontFamily: family, fontPackage: package); - ///
Chart Line Predict icon
- static const IconData chart_line_predict = IconData(0xe073, fontFamily: family, fontPackage: package); - ///
Chart Line icon
- static const IconData chart_line = IconData(0xe074, fontFamily: family, fontPackage: package); - ///
Chart Line Stacked icon
- static const IconData chart_line_stacked = IconData(0xe075, fontFamily: family, fontPackage: package); - ///
Chart Outline icon
- static const IconData chart_outline = IconData(0xe076, fontFamily: family, fontPackage: package); - ///
Chart Pie Charts icon
- static const IconData chart_pie_charts = IconData(0xe077, fontFamily: family, fontPackage: package); - ///
Chart Pie Content icon
- static const IconData chart_pie_content = IconData(0xe078, fontFamily: family, fontPackage: package); - ///
Chart Pie icon
- static const IconData chart_pie = IconData(0xe079, fontFamily: family, fontPackage: package); - ///
Chart Scatter Plot icon
- static const IconData chart_scatter_plot = IconData(0xe07a, fontFamily: family, fontPackage: package); - ///
Chart Stacked icon
- static const IconData chart_stacked = IconData(0xe07b, fontFamily: family, fontPackage: package); - ///
Chart Waterfall icon
- static const IconData chart_waterfall = IconData(0xe07c, fontFamily: family, fontPackage: package); - ///
Chat Bot icon
- static const IconData chat_bot = IconData(0xe07d, fontFamily: family, fontPackage: package); - ///
Chat Bubble Outline icon
- static const IconData chat_bubble_outline = IconData(0xe07e, fontFamily: family, fontPackage: package); - ///
Chat Bubble icon
- static const IconData chat_bubble = IconData(0xe07f, fontFamily: family, fontPackage: package); - ///
Chat Message Read icon
- static const IconData chat_message_read = IconData(0xe080, fontFamily: family, fontPackage: package); - ///
Chat Message Unread icon
- static const IconData chat_message_unread = IconData(0xe081, fontFamily: family, fontPackage: package); - ///
Chat icon
- static const IconData chat = IconData(0xe082, fontFamily: family, fontPackage: package); - ///
Chat Search icon
- static const IconData chat_search = IconData(0xe083, fontFamily: family, fontPackage: package); - ///
Check Box Empty icon
- static const IconData check_box_empty = IconData(0xe084, fontFamily: family, fontPackage: package); - ///
Check Box icon
- static const IconData check_box = IconData(0xe085, fontFamily: family, fontPackage: package); - ///
Check Circle Outline Alt icon
- static const IconData check_circle_outline_alt = IconData(0xe086, fontFamily: family, fontPackage: package); - ///
Check Circle Outline icon
- static const IconData check_circle_outline = IconData(0xe087, fontFamily: family, fontPackage: package); - ///
Check Circle icon
- static const IconData check_circle = IconData(0xe088, fontFamily: family, fontPackage: package); - ///
Check Mark icon
- static const IconData check_mark = IconData(0xe089, fontFamily: family, fontPackage: package); - ///
Checklist icon
- static const IconData checklist = IconData(0xe08a, fontFamily: family, fontPackage: package); - ///
Chevron Left icon
- static const IconData chevron_left = IconData(0xe08b, fontFamily: family, fontPackage: package); - ///
Chevron Right icon
- static const IconData chevron_right = IconData(0xe08c, fontFamily: family, fontPackage: package); - ///
Choices icon
- static const IconData choices = IconData(0xe08d, fontFamily: family, fontPackage: package); - ///
Clipboard Action icon
- static const IconData clipboard_action = IconData(0xe08e, fontFamily: family, fontPackage: package); - ///
Clipboard icon
- static const IconData clipboard = IconData(0xe08f, fontFamily: family, fontPackage: package); - ///
Clock Available icon
- static const IconData clock_available = IconData(0xe090, fontFamily: family, fontPackage: package); - ///
Clock Bid icon
- static const IconData clock_bid = IconData(0xe091, fontFamily: family, fontPackage: package); - ///
Clock Edit icon
- static const IconData clock_edit = IconData(0xe092, fontFamily: family, fontPackage: package); - ///
Clock Flexible icon
- static const IconData clock_flexible = IconData(0xe093, fontFamily: family, fontPackage: package); - ///
Clock In Progress icon
- static const IconData clock_in_progress = IconData(0xe094, fontFamily: family, fontPackage: package); - ///
Clock Info icon
- static const IconData clock_info = IconData(0xe095, fontFamily: family, fontPackage: package); - ///
Clock Missed icon
- static const IconData clock_missed = IconData(0xe096, fontFamily: family, fontPackage: package); - ///
Clock On icon
- static const IconData clock_on = IconData(0xe097, fontFamily: family, fontPackage: package); - ///
Clock Outline icon
- static const IconData clock_outline = IconData(0xe098, fontFamily: family, fontPackage: package); - ///
Clock Rollover icon
- static const IconData clock_rollover = IconData(0xe099, fontFamily: family, fontPackage: package); - ///
Clock icon
- static const IconData clock = IconData(0xe09a, fontFamily: family, fontPackage: package); - ///
Clock Segment icon
- static const IconData clock_segment = IconData(0xe09b, fontFamily: family, fontPackage: package); - ///
Clock Start icon
- static const IconData clock_start = IconData(0xe09c, fontFamily: family, fontPackage: package); - ///
Clock Stop icon
- static const IconData clock_stop = IconData(0xe09d, fontFamily: family, fontPackage: package); - ///
Clock Switch icon
- static const IconData clock_switch = IconData(0xe09e, fontFamily: family, fontPackage: package); - ///
Clock Timer icon
- static const IconData clock_timer = IconData(0xe09f, fontFamily: family, fontPackage: package); - ///
Clock Upcoming icon
- static const IconData clock_upcoming = IconData(0xe0a0, fontFamily: family, fontPackage: package); - ///
Close icon
- static const IconData close = IconData(0xe0a1, fontFamily: family, fontPackage: package); - ///
Closed Caption icon
- static const IconData closed_caption = IconData(0xe0a2, fontFamily: family, fontPackage: package); - ///
Cloud Done icon
- static const IconData cloud_done = IconData(0xe0a3, fontFamily: family, fontPackage: package); - ///
Cloud Download icon
- static const IconData cloud_download = IconData(0xe0a4, fontFamily: family, fontPackage: package); - ///
Cloud Off icon
- static const IconData cloud_off = IconData(0xe0a5, fontFamily: family, fontPackage: package); - ///
Cloud Outline icon
- static const IconData cloud_outline = IconData(0xe0a6, fontFamily: family, fontPackage: package); - ///
Cloud icon
- static const IconData cloud = IconData(0xe0a7, fontFamily: family, fontPackage: package); - ///
Cloud Upload icon
- static const IconData cloud_upload = IconData(0xe0a8, fontFamily: family, fontPackage: package); - ///
Color Fill icon
- static const IconData color_fill = IconData(0xe0a9, fontFamily: family, fontPackage: package); - ///
Columns icon
- static const IconData columns = IconData(0xe0aa, fontFamily: family, fontPackage: package); - ///
Contactless Pay icon
- static const IconData contactless_pay = IconData(0xe0ab, fontFamily: family, fontPackage: package); - ///
Content icon
- static const IconData content = IconData(0xe0ac, fontFamily: family, fontPackage: package); - ///
Contrast Image icon
- static const IconData contrast_image = IconData(0xe0ad, fontFamily: family, fontPackage: package); - ///
Contrast icon
- static const IconData contrast = IconData(0xe0ae, fontFamily: family, fontPackage: package); - ///
Conversation icon
- static const IconData conversation = IconData(0xe0af, fontFamily: family, fontPackage: package); - ///
Copy File icon
- static const IconData copy_file = IconData(0xe0b0, fontFamily: family, fontPackage: package); - ///
Create New Folder icon
- static const IconData create_new_folder = IconData(0xe0b1, fontFamily: family, fontPackage: package); - ///
Credit Card icon
- static const IconData credit_card = IconData(0xe0b2, fontFamily: family, fontPackage: package); - ///
Credit Card Swipe icon
- static const IconData credit_card_swipe = IconData(0xe0b3, fontFamily: family, fontPackage: package); - ///
Crop icon
- static const IconData crop = IconData(0xe0b4, fontFamily: family, fontPackage: package); - ///
Dark Mode icon
- static const IconData dark_mode = IconData(0xe0b5, fontFamily: family, fontPackage: package); - ///
Dashboard icon
- static const IconData dashboard = IconData(0xe0b6, fontFamily: family, fontPackage: package); - ///
Delete Forever icon
- static const IconData delete_forever = IconData(0xe0b7, fontFamily: family, fontPackage: package); - ///
Delete Outline icon
- static const IconData delete_outline = IconData(0xe0b8, fontFamily: family, fontPackage: package); - ///
Delete icon
- static const IconData delete = IconData(0xe0b9, fontFamily: family, fontPackage: package); - ///
Desktop icon
- static const IconData desktop = IconData(0xe0ba, fontFamily: family, fontPackage: package); - ///
Device Settings icon
- static const IconData device_settings = IconData(0xe0bb, fontFamily: family, fontPackage: package); - ///
Devices Ecosystem icon
- static const IconData devices_ecosystem = IconData(0xe0bc, fontFamily: family, fontPackage: package); - ///
Devices icon
- static const IconData devices = IconData(0xe0bd, fontFamily: family, fontPackage: package); - ///
Dialpad icon
- static const IconData dialpad = IconData(0xe0be, fontFamily: family, fontPackage: package); - ///
Dislike icon
- static const IconData dislike = IconData(0xe0bf, fontFamily: family, fontPackage: package); - ///
Distribute Horizontal icon
- static const IconData distribute_horizontal = IconData(0xe0c0, fontFamily: family, fontPackage: package); - ///
Distribute Vertical icon
- static const IconData distribute_vertical = IconData(0xe0c1, fontFamily: family, fontPackage: package); - ///
Doc Attach icon
- static const IconData doc_attach = IconData(0xe0c2, fontFamily: family, fontPackage: package); - ///
Document icon
- static const IconData document = IconData(0xe0c3, fontFamily: family, fontPackage: package); - ///
Dollar icon
- static const IconData dollar = IconData(0xe0c4, fontFamily: family, fontPackage: package); - ///
Download icon
- static const IconData download = IconData(0xe0c5, fontFamily: family, fontPackage: package); - ///
Downloading icon
- static const IconData downloading = IconData(0xe0c6, fontFamily: family, fontPackage: package); - ///
Drop Down Circle icon
- static const IconData drop_down_circle = IconData(0xe0c7, fontFamily: family, fontPackage: package); - ///
Eas icon
- static const IconData eas = IconData(0xe0c8, fontFamily: family, fontPackage: package); - ///
Edit Border icon
- static const IconData edit_border = IconData(0xe0c9, fontFamily: family, fontPackage: package); - ///
Edit icon
- static const IconData edit = IconData(0xe0ca, fontFamily: family, fontPackage: package); - ///
Email Alt icon
- static const IconData email_alt = IconData(0xe0cb, fontFamily: family, fontPackage: package); - ///
Email Outline icon
- static const IconData email_outline = IconData(0xe0cc, fontFamily: family, fontPackage: package); - ///
Email Reply All icon
- static const IconData email_reply_all = IconData(0xe0cd, fontFamily: family, fontPackage: package); - ///
Email icon
- static const IconData email = IconData(0xe0ce, fontFamily: family, fontPackage: package); - ///
End Call icon
- static const IconData end_call = IconData(0xe0cf, fontFamily: family, fontPackage: package); - ///
Enterprise Diagnostics icon
- static const IconData enterprise_diagnostics = IconData(0xe0d0, fontFamily: family, fontPackage: package); - ///
Environmental icon
- static const IconData environmental = IconData(0xe0d1, fontFamily: family, fontPackage: package); - ///
Error Outline icon
- static const IconData error_outline = IconData(0xe0d2, fontFamily: family, fontPackage: package); - ///
Error icon
- static const IconData error = IconData(0xe0d3, fontFamily: family, fontPackage: package); - ///
Ethernet icon
- static const IconData ethernet = IconData(0xe0d4, fontFamily: family, fontPackage: package); - ///
Exit icon
- static const IconData exit = IconData(0xe0d5, fontFamily: family, fontPackage: package); - ///
Expand Less icon
- static const IconData expand_less = IconData(0xe0d6, fontFamily: family, fontPackage: package); - ///
Expand More icon
- static const IconData expand_more = IconData(0xe0d7, fontFamily: family, fontPackage: package); - ///
Eye Dropper icon
- static const IconData eye_dropper = IconData(0xe0d8, fontFamily: family, fontPackage: package); - ///
Eye Preview icon
- static const IconData eye_preview = IconData(0xe0d9, fontFamily: family, fontPackage: package); - ///
Face Id icon
- static const IconData face_id = IconData(0xe0da, fontFamily: family, fontPackage: package); - ///
Facebook icon
- static const IconData facebook = IconData(0xe0db, fontFamily: family, fontPackage: package); - ///
Factory icon
- static const IconData factory = IconData(0xe0dc, fontFamily: family, fontPackage: package); - ///
Fast Forward icon
- static const IconData fast_forward = IconData(0xe0dd, fontFamily: family, fontPackage: package); - ///
Fast Rewind icon
- static const IconData fast_rewind = IconData(0xe0de, fontFamily: family, fontPackage: package); - ///
File icon
- static const IconData file = IconData(0xe0df, fontFamily: family, fontPackage: package); - ///
Filter Alt icon
- static const IconData filter_alt = IconData(0xe0e0, fontFamily: family, fontPackage: package); - ///
Filter icon
- static const IconData filter = IconData(0xe0e1, fontFamily: family, fontPackage: package); - ///
Finished Download icon
- static const IconData finished_download = IconData(0xe0e2, fontFamily: family, fontPackage: package); - ///
First Page icon
- static const IconData first_page = IconData(0xe0e3, fontFamily: family, fontPackage: package); - ///
Flag icon
- static const IconData flag = IconData(0xe0e4, fontFamily: family, fontPackage: package); - ///
Flight Mode icon
- static const IconData flight_mode = IconData(0xe0e5, fontFamily: family, fontPackage: package); - ///
Flight icon
- static const IconData flight = IconData(0xe0e6, fontFamily: family, fontPackage: package); - ///
Flip icon
- static const IconData flip = IconData(0xe0e7, fontFamily: family, fontPackage: package); - ///
Folder File icon
- static const IconData folder_file = IconData(0xe0e8, fontFamily: family, fontPackage: package); - ///
Folder Outline icon
- static const IconData folder_outline = IconData(0xe0e9, fontFamily: family, fontPackage: package); - ///
Folder icon
- static const IconData folder = IconData(0xe0ea, fontFamily: family, fontPackage: package); - ///
Font Size Decrease icon
- static const IconData font_size_decrease = IconData(0xe0eb, fontFamily: family, fontPackage: package); - ///
Font Size Increase icon
- static const IconData font_size_increase = IconData(0xe0ec, fontFamily: family, fontPackage: package); - ///
Format Shapes icon
- static const IconData format_shapes = IconData(0xe0ed, fontFamily: family, fontPackage: package); - ///
Forward icon
- static const IconData forward = IconData(0xe0ee, fontFamily: family, fontPackage: package); - ///
Freezer icon
- static const IconData freezer = IconData(0xe0ef, fontFamily: family, fontPackage: package); - ///
Full Screen Exit icon
- static const IconData full_screen_exit = IconData(0xe0f0, fontFamily: family, fontPackage: package); - ///
Full Screen icon
- static const IconData full_screen = IconData(0xe0f1, fontFamily: family, fontPackage: package); - ///
Gif icon
- static const IconData gif = IconData(0xe0f2, fontFamily: family, fontPackage: package); - ///
Glossary icon
- static const IconData glossary = IconData(0xe0f3, fontFamily: family, fontPackage: package); - ///
Grid Off icon
- static const IconData grid_off = IconData(0xe0f4, fontFamily: family, fontPackage: package); - ///
Grid On icon
- static const IconData grid_on = IconData(0xe0f5, fontFamily: family, fontPackage: package); - ///
Grid View icon
- static const IconData grid_view = IconData(0xe0f6, fontFamily: family, fontPackage: package); - ///
Group icon
- static const IconData group = IconData(0xe0f7, fontFamily: family, fontPackage: package); - ///
Groups icon
- static const IconData groups = IconData(0xe0f8, fontFamily: family, fontPackage: package); - ///
Hamburger Menu Navigation Rail icon
- static const IconData hamburger_menu_navigation_rail = IconData(0xe0f9, fontFamily: family, fontPackage: package); - ///
Hamburger Menu icon
- static const IconData hamburger_menu = IconData(0xe0fa, fontFamily: family, fontPackage: package); - ///
Hamburger Menu Thick icon
- static const IconData hamburger_menu_thick = IconData(0xe0fb, fontFamily: family, fontPackage: package); - ///
Hand icon
- static const IconData hand = IconData(0xe0fc, fontFamily: family, fontPackage: package); - ///
Happy icon
- static const IconData happy = IconData(0xe0fd, fontFamily: family, fontPackage: package); - ///
Hdmi icon
- static const IconData hdmi = IconData(0xe0fe, fontFamily: family, fontPackage: package); - ///
Hdr icon
- static const IconData hdr = IconData(0xe0ff, fontFamily: family, fontPackage: package); - ///
Headphones icon
- static const IconData headphones = IconData(0xe100, fontFamily: family, fontPackage: package); - ///
Headset icon
- static const IconData headset = IconData(0xe101, fontFamily: family, fontPackage: package); - ///
Help Outline icon
- static const IconData help_outline = IconData(0xe102, fontFamily: family, fontPackage: package); - ///
Help icon
- static const IconData help = IconData(0xe103, fontFamily: family, fontPackage: package); - ///
History icon
- static const IconData history = IconData(0xe104, fontFamily: family, fontPackage: package); - ///
Home icon
- static const IconData home = IconData(0xe105, fontFamily: family, fontPackage: package); - ///
Hourglass icon
- static const IconData hourglass = IconData(0xe106, fontFamily: family, fontPackage: package); - ///
How Do I icon
- static const IconData how_do_i = IconData(0xe107, fontFamily: family, fontPackage: package); - ///
Image Library icon
- static const IconData image_library = IconData(0xe108, fontFamily: family, fontPackage: package); - ///
Image icon
- static const IconData image = IconData(0xe109, fontFamily: family, fontPackage: package); - ///
Important Notification icon
- static const IconData important_notification = IconData(0xe10a, fontFamily: family, fontPackage: package); - ///
Inbox icon
- static const IconData inbox = IconData(0xe10b, fontFamily: family, fontPackage: package); - ///
Indent Decrease icon
- static const IconData indent_decrease = IconData(0xe10c, fontFamily: family, fontPackage: package); - ///
Indent Increase icon
- static const IconData indent_increase = IconData(0xe10d, fontFamily: family, fontPackage: package); - ///
Indeterminate Check Box icon
- static const IconData indeterminate_check_box = IconData(0xe10e, fontFamily: family, fontPackage: package); - ///
Info icon
- static const IconData info = IconData(0xe10f, fontFamily: family, fontPackage: package); - ///
Instagram icon
- static const IconData instagram = IconData(0xe110, fontFamily: family, fontPackage: package); - ///
Ios Share icon
- static const IconData ios_share = IconData(0xe111, fontFamily: family, fontPackage: package); - ///
Iso icon
- static const IconData iso = IconData(0xe112, fontFamily: family, fontPackage: package); - ///
Issue Audit icon
- static const IconData issue_audit = IconData(0xe113, fontFamily: family, fontPackage: package); - ///
Italic icon
- static const IconData italic = IconData(0xe114, fontFamily: family, fontPackage: package); - ///
Jpg Attach icon
- static const IconData jpg_attach = IconData(0xe115, fontFamily: family, fontPackage: package); - ///
Justify icon
- static const IconData justify = IconData(0xe116, fontFamily: family, fontPackage: package); - ///
Keyboard icon
- static const IconData keyboard = IconData(0xe117, fontFamily: family, fontPackage: package); - ///
Label icon
- static const IconData label = IconData(0xe118, fontFamily: family, fontPackage: package); - ///
Laptop icon
- static const IconData laptop = IconData(0xe119, fontFamily: family, fontPackage: package); - ///
Last Page icon
- static const IconData last_page = IconData(0xe11a, fontFamily: family, fontPackage: package); - ///
Layers icon
- static const IconData layers = IconData(0xe11b, fontFamily: family, fontPackage: package); - ///
Light Mode icon
- static const IconData light_mode = IconData(0xe11c, fontFamily: family, fontPackage: package); - ///
Light Rail Train icon
- static const IconData light_rail_train = IconData(0xe11d, fontFamily: family, fontPackage: package); - ///
Lightbulb icon
- static const IconData lightbulb = IconData(0xe11e, fontFamily: family, fontPackage: package); - ///
Like icon
- static const IconData like = IconData(0xe11f, fontFamily: family, fontPackage: package); - ///
Line Spacing icon
- static const IconData line_spacing = IconData(0xe120, fontFamily: family, fontPackage: package); - ///
Link Add icon
- static const IconData link_add = IconData(0xe121, fontFamily: family, fontPackage: package); - ///
Link icon
- static const IconData link = IconData(0xe122, fontFamily: family, fontPackage: package); - ///
Linkedin icon
- static const IconData linkedin = IconData(0xe123, fontFamily: family, fontPackage: package); - ///
List Alt icon
- static const IconData list_alt = IconData(0xe124, fontFamily: family, fontPackage: package); - ///
List Bullet Contained icon
- static const IconData list_bullet_contained = IconData(0xe125, fontFamily: family, fontPackage: package); - ///
List Feedback icon
- static const IconData list_feedback = IconData(0xe126, fontFamily: family, fontPackage: package); - ///
List Form icon
- static const IconData list_form = IconData(0xe127, fontFamily: family, fontPackage: package); - ///
List icon
- static const IconData list = IconData(0xe128, fontFamily: family, fontPackage: package); - ///
Local Shipping icon
- static const IconData local_shipping = IconData(0xe129, fontFamily: family, fontPackage: package); - ///
Location Off icon
- static const IconData location_off = IconData(0xe12a, fontFamily: family, fontPackage: package); - ///
Location Point icon
- static const IconData location_point = IconData(0xe12b, fontFamily: family, fontPackage: package); - ///
Location icon
- static const IconData location = IconData(0xe12c, fontFamily: family, fontPackage: package); - ///
Lock Alt icon
- static const IconData lock_alt = IconData(0xe12d, fontFamily: family, fontPackage: package); - ///
Lock icon
- static const IconData lock = IconData(0xe12e, fontFamily: family, fontPackage: package); - ///
Lock Undo icon
- static const IconData lock_undo = IconData(0xe12f, fontFamily: family, fontPackage: package); - ///
Log In icon
- static const IconData log_in = IconData(0xe130, fontFamily: family, fontPackage: package); - ///
Log Out icon
- static const IconData log_out = IconData(0xe131, fontFamily: family, fontPackage: package); - ///
Love Outline icon
- static const IconData love_outline = IconData(0xe132, fontFamily: family, fontPackage: package); - ///
Love icon
- static const IconData love = IconData(0xe133, fontFamily: family, fontPackage: package); - ///
Maintenance icon
- static const IconData maintenance = IconData(0xe134, fontFamily: family, fontPackage: package); - ///
Map icon
- static const IconData map = IconData(0xe135, fontFamily: family, fontPackage: package); - ///
Meal icon
- static const IconData meal = IconData(0xe136, fontFamily: family, fontPackage: package); - ///
Medium icon
- static const IconData medium = IconData(0xe137, fontFamily: family, fontPackage: package); - ///
Memory icon
- static const IconData memory = IconData(0xe138, fontFamily: family, fontPackage: package); - ///
Message icon
- static const IconData message = IconData(0xe139, fontFamily: family, fontPackage: package); - ///
Microphone Off icon
- static const IconData microphone_off = IconData(0xe13a, fontFamily: family, fontPackage: package); - ///
Microphone Outline icon
- static const IconData microphone_outline = IconData(0xe13b, fontFamily: family, fontPackage: package); - ///
Microphone icon
- static const IconData microphone = IconData(0xe13c, fontFamily: family, fontPackage: package); - ///
Mobile Friendly icon
- static const IconData mobile_friendly = IconData(0xe13d, fontFamily: family, fontPackage: package); - ///
Money Euro icon
- static const IconData money_euro = IconData(0xe13e, fontFamily: family, fontPackage: package); - ///
Money Pound icon
- static const IconData money_pound = IconData(0xe13f, fontFamily: family, fontPackage: package); - ///
Money Usd icon
- static const IconData money_usd = IconData(0xe140, fontFamily: family, fontPackage: package); - ///
Monitor icon
- static const IconData monitor = IconData(0xe141, fontFamily: family, fontPackage: package); - ///
More Horizontal icon
- static const IconData more_horizontal = IconData(0xe142, fontFamily: family, fontPackage: package); - ///
More Vertical icon
- static const IconData more_vertical = IconData(0xe143, fontFamily: family, fontPackage: package); - ///
My Location icon
- static const IconData my_location = IconData(0xe144, fontFamily: family, fontPackage: package); - ///
Navigate icon
- static const IconData navigate = IconData(0xe145, fontFamily: family, fontPackage: package); - ///
Navigation icon
- static const IconData navigation = IconData(0xe146, fontFamily: family, fontPackage: package); - ///
Near Me icon
- static const IconData near_me = IconData(0xe147, fontFamily: family, fontPackage: package); - ///
Network Signal icon
- static const IconData network_signal = IconData(0xe148, fontFamily: family, fontPackage: package); - ///
New Chat icon
- static const IconData new_chat = IconData(0xe149, fontFamily: family, fontPackage: package); - ///
Nfc icon
- static const IconData nfc = IconData(0xe14a, fontFamily: family, fontPackage: package); - ///
Night icon
- static const IconData night = IconData(0xe14b, fontFamily: family, fontPackage: package); - ///
No Color icon
- static const IconData no_color = IconData(0xe14c, fontFamily: family, fontPackage: package); - ///
Note icon
- static const IconData note = IconData(0xe14d, fontFamily: family, fontPackage: package); - ///
Notifications Off icon
- static const IconData notifications_off = IconData(0xe14e, fontFamily: family, fontPackage: package); - ///
Numbered List icon
- static const IconData numbered_list = IconData(0xe14f, fontFamily: family, fontPackage: package); - ///
Open In Full icon
- static const IconData open_in_full = IconData(0xe150, fontFamily: family, fontPackage: package); - ///
Open In New Window icon
- static const IconData open_in_new_window = IconData(0xe151, fontFamily: family, fontPackage: package); - ///
Open New Off icon
- static const IconData open_new_off = IconData(0xe152, fontFamily: family, fontPackage: package); - ///
Page Height icon
- static const IconData page_height = IconData(0xe153, fontFamily: family, fontPackage: package); - ///
Page Rotate icon
- static const IconData page_rotate = IconData(0xe154, fontFamily: family, fontPackage: package); - ///
Page Width icon
- static const IconData page_width = IconData(0xe155, fontFamily: family, fontPackage: package); - ///
Palette icon
- static const IconData palette = IconData(0xe156, fontFamily: family, fontPackage: package); - ///
Partner icon
- static const IconData partner = IconData(0xe157, fontFamily: family, fontPackage: package); - ///
Pause Circle icon
- static const IconData pause_circle = IconData(0xe158, fontFamily: family, fontPackage: package); - ///
Pause icon
- static const IconData pause = IconData(0xe159, fontFamily: family, fontPackage: package); - ///
Pdf Attach icon
- static const IconData pdf_attach = IconData(0xe15a, fontFamily: family, fontPackage: package); - ///
Pending icon
- static const IconData pending = IconData(0xe15b, fontFamily: family, fontPackage: package); - ///
Person Admin icon
- static const IconData person_admin = IconData(0xe15c, fontFamily: family, fontPackage: package); - ///
Person Assign icon
- static const IconData person_assign = IconData(0xe15d, fontFamily: family, fontPackage: package); - ///
Person Clock icon
- static const IconData person_clock = IconData(0xe15e, fontFamily: family, fontPackage: package); - ///
Person Info icon
- static const IconData person_info = IconData(0xe15f, fontFamily: family, fontPackage: package); - ///
Person Manager icon
- static const IconData person_manager = IconData(0xe160, fontFamily: family, fontPackage: package); - ///
Person Move icon
- static const IconData person_move = IconData(0xe161, fontFamily: family, fontPackage: package); - ///
Person Outline icon
- static const IconData person_outline = IconData(0xe162, fontFamily: family, fontPackage: package); - ///
Person icon
- static const IconData person = IconData(0xe163, fontFamily: family, fontPackage: package); - ///
Person Search icon
- static const IconData person_search = IconData(0xe164, fontFamily: family, fontPackage: package); - ///
Person Swap icon
- static const IconData person_swap = IconData(0xe165, fontFamily: family, fontPackage: package); - ///
Person Walk icon
- static const IconData person_walk = IconData(0xe166, fontFamily: family, fontPackage: package); - ///
Phone Android icon
- static const IconData phone_android = IconData(0xe167, fontFamily: family, fontPackage: package); - ///
Phone Bluetooth Speaker icon
- static const IconData phone_bluetooth_speaker = IconData(0xe168, fontFamily: family, fontPackage: package); - ///
Phone In Talk icon
- static const IconData phone_in_talk = IconData(0xe169, fontFamily: family, fontPackage: package); - ///
Phone Iphone icon
- static const IconData phone_iphone = IconData(0xe16a, fontFamily: family, fontPackage: package); - ///
Phone icon
- static const IconData phone = IconData(0xe16b, fontFamily: family, fontPackage: package); - ///
Phonelink icon
- static const IconData phonelink = IconData(0xe16c, fontFamily: family, fontPackage: package); - ///
Phrase icon
- static const IconData phrase = IconData(0xe16d, fontFamily: family, fontPackage: package); - ///
Pin icon
- static const IconData pin = IconData(0xe16e, fontFamily: family, fontPackage: package); - ///
Place icon
- static const IconData place = IconData(0xe16f, fontFamily: family, fontPackage: package); - ///
Planogram icon
- static const IconData planogram = IconData(0xe170, fontFamily: family, fontPackage: package); - ///
Play Circle icon
- static const IconData play_circle = IconData(0xe171, fontFamily: family, fontPackage: package); - ///
Play Outline icon
- static const IconData play_outline = IconData(0xe172, fontFamily: family, fontPackage: package); - ///
Play icon
- static const IconData play = IconData(0xe173, fontFamily: family, fontPackage: package); - ///
Png Attach icon
- static const IconData png_attach = IconData(0xe174, fontFamily: family, fontPackage: package); - ///
Point Gift icon
- static const IconData point_gift = IconData(0xe175, fontFamily: family, fontPackage: package); - ///
Point Heart icon
- static const IconData point_heart = IconData(0xe176, fontFamily: family, fontPackage: package); - ///
Point Money icon
- static const IconData point_money = IconData(0xe177, fontFamily: family, fontPackage: package); - ///
Point Star icon
- static const IconData point_star = IconData(0xe178, fontFamily: family, fontPackage: package); - ///
Point Token icon
- static const IconData point_token = IconData(0xe179, fontFamily: family, fontPackage: package); - ///
Portrait icon
- static const IconData portrait = IconData(0xe17a, fontFamily: family, fontPackage: package); - ///
Ppt Attach icon
- static const IconData ppt_attach = IconData(0xe17b, fontFamily: family, fontPackage: package); - ///
Price icon
- static const IconData price = IconData(0xe17c, fontFamily: family, fontPackage: package); - ///
Printer icon
- static const IconData printer = IconData(0xe17d, fontFamily: family, fontPackage: package); - ///
Priority icon
- static const IconData priority = IconData(0xe17e, fontFamily: family, fontPackage: package); - ///
Pro icon
- static const IconData pro = IconData(0xe17f, fontFamily: family, fontPackage: package); - ///
Productivity Apps icon
- static const IconData productivity_apps = IconData(0xe180, fontFamily: family, fontPackage: package); - ///
Ptt icon
- static const IconData ptt = IconData(0xe181, fontFamily: family, fontPackage: package); - ///
Publish icon
- static const IconData publish = IconData(0xe182, fontFamily: family, fontPackage: package); - ///
Push Pin icon
- static const IconData push_pin = IconData(0xe183, fontFamily: family, fontPackage: package); - ///
Qr Code icon
- static const IconData qr_code = IconData(0xe184, fontFamily: family, fontPackage: package); - ///
Queue icon
- static const IconData queue = IconData(0xe185, fontFamily: family, fontPackage: package); - ///
Radio Button Checked icon
- static const IconData radio_button_checked = IconData(0xe186, fontFamily: family, fontPackage: package); - ///
Radio Button Unchecked icon
- static const IconData radio_button_unchecked = IconData(0xe187, fontFamily: family, fontPackage: package); - ///
React Add icon
- static const IconData react_add = IconData(0xe188, fontFamily: family, fontPackage: package); - ///
React Thumbsup icon
- static const IconData react_thumbsup = IconData(0xe189, fontFamily: family, fontPackage: package); - ///
Recall icon
- static const IconData recall = IconData(0xe18a, fontFamily: family, fontPackage: package); - ///
Receipt icon
- static const IconData receipt = IconData(0xe18b, fontFamily: family, fontPackage: package); - ///
Recording icon
- static const IconData recording = IconData(0xe18c, fontFamily: family, fontPackage: package); - ///
Redo icon
- static const IconData redo = IconData(0xe18d, fontFamily: family, fontPackage: package); - ///
Refresh icon
- static const IconData refresh = IconData(0xe18e, fontFamily: family, fontPackage: package); - ///
Remove Box icon
- static const IconData remove_box = IconData(0xe18f, fontFamily: family, fontPackage: package); - ///
Remove Circle Outline icon
- static const IconData remove_circle_outline = IconData(0xe190, fontFamily: family, fontPackage: package); - ///
Remove Circle icon
- static const IconData remove_circle = IconData(0xe191, fontFamily: family, fontPackage: package); - ///
Remove Group icon
- static const IconData remove_group = IconData(0xe192, fontFamily: family, fontPackage: package); - ///
Remove Person icon
- static const IconData remove_person = IconData(0xe193, fontFamily: family, fontPackage: package); - ///
Remove icon
- static const IconData remove = IconData(0xe194, fontFamily: family, fontPackage: package); - ///
Renew icon
- static const IconData renew = IconData(0xe195, fontFamily: family, fontPackage: package); - ///
Reorder icon
- static const IconData reorder = IconData(0xe196, fontFamily: family, fontPackage: package); - ///
Repeat icon
- static const IconData repeat = IconData(0xe197, fontFamily: family, fontPackage: package); - ///
Replay icon
- static const IconData replay = IconData(0xe198, fontFamily: family, fontPackage: package); - ///
Reply icon
- static const IconData reply = IconData(0xe199, fontFamily: family, fontPackage: package); - ///
Report icon
- static const IconData report = IconData(0xe19a, fontFamily: family, fontPackage: package); - ///
Restart Alt icon
- static const IconData restart_alt = IconData(0xe19b, fontFamily: family, fontPackage: package); - ///
Review icon
- static const IconData review = IconData(0xe19c, fontFamily: family, fontPackage: package); - ///
Road Map icon
- static const IconData road_map = IconData(0xe19d, fontFamily: family, fontPackage: package); - ///
Rotate Left icon
- static const IconData rotate_left = IconData(0xe19e, fontFamily: family, fontPackage: package); - ///
Rotate Right icon
- static const IconData rotate_right = IconData(0xe19f, fontFamily: family, fontPackage: package); - ///
Rss Feed icon
- static const IconData rss_feed = IconData(0xe1a0, fontFamily: family, fontPackage: package); - ///
Rules icon
- static const IconData rules = IconData(0xe1a1, fontFamily: family, fontPackage: package); - ///
Sad icon
- static const IconData sad = IconData(0xe1a2, fontFamily: family, fontPackage: package); - ///
Satisfied icon
- static const IconData satisfied = IconData(0xe1a3, fontFamily: family, fontPackage: package); - ///
Save Alt icon
- static const IconData save_alt = IconData(0xe1a4, fontFamily: family, fontPackage: package); - ///
Save Content icon
- static const IconData save_content = IconData(0xe1a5, fontFamily: family, fontPackage: package); - ///
Save icon
- static const IconData save = IconData(0xe1a6, fontFamily: family, fontPackage: package); - ///
Scan Rate icon
- static const IconData scan_rate = IconData(0xe1a7, fontFamily: family, fontPackage: package); - ///
Scanner icon
- static const IconData scanner = IconData(0xe1a8, fontFamily: family, fontPackage: package); - ///
Schedule icon
- static const IconData schedule = IconData(0xe1a9, fontFamily: family, fontPackage: package); - ///
School icon
- static const IconData school = IconData(0xe1aa, fontFamily: family, fontPackage: package); - ///
Screen Rotation icon
- static const IconData screen_rotation = IconData(0xe1ab, fontFamily: family, fontPackage: package); - ///
Sd Card icon
- static const IconData sd_card = IconData(0xe1ac, fontFamily: family, fontPackage: package); - ///
Search icon
- static const IconData search = IconData(0xe1ad, fontFamily: family, fontPackage: package); - ///
Security Check icon
- static const IconData security_check = IconData(0xe1ae, fontFamily: family, fontPackage: package); - ///
Security icon
- static const IconData security = IconData(0xe1af, fontFamily: family, fontPackage: package); - ///
Send icon
- static const IconData send = IconData(0xe1b0, fontFamily: family, fontPackage: package); - ///
Settings icon
- static const IconData settings = IconData(0xe1b1, fontFamily: family, fontPackage: package); - ///
Shape Recognition icon
- static const IconData shape_recognition = IconData(0xe1b2, fontFamily: family, fontPackage: package); - ///
Share icon
- static const IconData share = IconData(0xe1b3, fontFamily: family, fontPackage: package); - ///
Shared Folder icon
- static const IconData shared_folder = IconData(0xe1b4, fontFamily: family, fontPackage: package); - ///
Ship icon
- static const IconData ship = IconData(0xe1b5, fontFamily: family, fontPackage: package); - ///
Sim Card icon
- static const IconData sim_card = IconData(0xe1b6, fontFamily: family, fontPackage: package); - ///
Skip Next icon
- static const IconData skip_next = IconData(0xe1b7, fontFamily: family, fontPackage: package); - ///
Skip Previous icon
- static const IconData skip_previous = IconData(0xe1b8, fontFamily: family, fontPackage: package); - ///
Slide Show icon
- static const IconData slide_show = IconData(0xe1b9, fontFamily: family, fontPackage: package); - ///
Smart Phone icon
- static const IconData smart_phone = IconData(0xe1ba, fontFamily: family, fontPackage: package); - ///
Sms icon
- static const IconData sms = IconData(0xe1bb, fontFamily: family, fontPackage: package); - ///
Snooze icon
- static const IconData snooze = IconData(0xe1bc, fontFamily: family, fontPackage: package); - ///
Solutions icon
- static const IconData solutions = IconData(0xe1bd, fontFamily: family, fontPackage: package); - ///
Sort Content icon
- static const IconData sort_content = IconData(0xe1be, fontFamily: family, fontPackage: package); - ///
Sort icon
- static const IconData sort = IconData(0xe1bf, fontFamily: family, fontPackage: package); - ///
Speaker icon
- static const IconData speaker = IconData(0xe1c0, fontFamily: family, fontPackage: package); - ///
Star Half icon
- static const IconData star_half = IconData(0xe1c1, fontFamily: family, fontPackage: package); - ///
Star Outline icon
- static const IconData star_outline = IconData(0xe1c2, fontFamily: family, fontPackage: package); - ///
Star icon
- static const IconData star = IconData(0xe1c3, fontFamily: family, fontPackage: package); - ///
Steps icon
- static const IconData steps = IconData(0xe1c4, fontFamily: family, fontPackage: package); - ///
Sticker icon
- static const IconData sticker = IconData(0xe1c5, fontFamily: family, fontPackage: package); - ///
Stop Circle icon
- static const IconData stop_circle = IconData(0xe1c6, fontFamily: family, fontPackage: package); - ///
Stop icon
- static const IconData stop = IconData(0xe1c7, fontFamily: family, fontPackage: package); - ///
Store Release icon
- static const IconData store_release = IconData(0xe1c8, fontFamily: family, fontPackage: package); - ///
Store icon
- static const IconData store = IconData(0xe1c9, fontFamily: family, fontPackage: package); - ///
Store Swap icon
- static const IconData store_swap = IconData(0xe1ca, fontFamily: family, fontPackage: package); - ///
Store Transfer icon
- static const IconData store_transfer = IconData(0xe1cb, fontFamily: family, fontPackage: package); - ///
Straighten icon
- static const IconData straighten = IconData(0xe1cc, fontFamily: family, fontPackage: package); - ///
Strategy icon
- static const IconData strategy = IconData(0xe1cd, fontFamily: family, fontPackage: package); - ///
Strikethrough icon
- static const IconData strikethrough = IconData(0xe1ce, fontFamily: family, fontPackage: package); - ///
Subscribe icon
- static const IconData subscribe = IconData(0xe1cf, fontFamily: family, fontPackage: package); - ///
Swap icon
- static const IconData swap = IconData(0xe1d0, fontFamily: family, fontPackage: package); - ///
Switch User icon
- static const IconData switch_user = IconData(0xe1d1, fontFamily: family, fontPackage: package); - ///
Sync Action icon
- static const IconData sync_action = IconData(0xe1d2, fontFamily: family, fontPackage: package); - ///
Sync Disabled icon
- static const IconData sync_disabled = IconData(0xe1d3, fontFamily: family, fontPackage: package); - ///
Sync icon
- static const IconData sync = IconData(0xe1d4, fontFamily: family, fontPackage: package); - ///
Table icon
- static const IconData table = IconData(0xe1d5, fontFamily: family, fontPackage: package); - ///
Tablet Mac icon
- static const IconData tablet_mac = IconData(0xe1d6, fontFamily: family, fontPackage: package); - ///
Tablet icon
- static const IconData tablet = IconData(0xe1d7, fontFamily: family, fontPackage: package); - ///
Tag Enterprise icon
- static const IconData tag_enterprise = IconData(0xe1d8, fontFamily: family, fontPackage: package); - ///
Tag icon
- static const IconData tag = IconData(0xe1d9, fontFamily: family, fontPackage: package); - ///
Tap To Pay icon
- static const IconData tap_to_pay = IconData(0xe1da, fontFamily: family, fontPackage: package); - ///
Taxi icon
- static const IconData taxi = IconData(0xe1db, fontFamily: family, fontPackage: package); - ///
Text Color icon
- static const IconData text_color = IconData(0xe1dc, fontFamily: family, fontPackage: package); - ///
Tiers icon
- static const IconData tiers = IconData(0xe1dd, fontFamily: family, fontPackage: package); - ///
Timecard Approve icon
- static const IconData timecard_approve = IconData(0xe1de, fontFamily: family, fontPackage: package); - ///
Timecard icon
- static const IconData timecard = IconData(0xe1df, fontFamily: family, fontPackage: package); - ///
Timecard Warning icon
- static const IconData timecard_warning = IconData(0xe1e0, fontFamily: family, fontPackage: package); - ///
Timer icon
- static const IconData timer = IconData(0xe1e1, fontFamily: family, fontPackage: package); - ///
Toggle Off icon
- static const IconData toggle_off = IconData(0xe1e2, fontFamily: family, fontPackage: package); - ///
Toggle On icon
- static const IconData toggle_on = IconData(0xe1e3, fontFamily: family, fontPackage: package); - ///
Touch icon
- static const IconData touch = IconData(0xe1e4, fontFamily: family, fontPackage: package); - ///
Train icon
- static const IconData train = IconData(0xe1e5, fontFamily: family, fontPackage: package); - ///
Transfer icon
- static const IconData transfer = IconData(0xe1e6, fontFamily: family, fontPackage: package); - ///
Trending Down icon
- static const IconData trending_down = IconData(0xe1e7, fontFamily: family, fontPackage: package); - ///
Trending Up icon
- static const IconData trending_up = IconData(0xe1e8, fontFamily: family, fontPackage: package); - ///
Tv icon
- static const IconData tv = IconData(0xe1e9, fontFamily: family, fontPackage: package); - ///
Twitter icon
- static const IconData twitter = IconData(0xe1ea, fontFamily: family, fontPackage: package); - ///
Type icon
- static const IconData type = IconData(0xe1eb, fontFamily: family, fontPackage: package); - ///
Uhf Rfid icon
- static const IconData uhf_rfid = IconData(0xe1ec, fontFamily: family, fontPackage: package); - ///
Underline icon
- static const IconData underline = IconData(0xe1ed, fontFamily: family, fontPackage: package); - ///
Undo icon
- static const IconData undo = IconData(0xe1ee, fontFamily: family, fontPackage: package); - ///
Unfold Less icon
- static const IconData unfold_less = IconData(0xe1ef, fontFamily: family, fontPackage: package); - ///
Unfold More icon
- static const IconData unfold_more = IconData(0xe1f0, fontFamily: family, fontPackage: package); - ///
Unlock Alt icon
- static const IconData unlock_alt = IconData(0xe1f1, fontFamily: family, fontPackage: package); - ///
Unlock icon
- static const IconData unlock = IconData(0xe1f2, fontFamily: family, fontPackage: package); - ///
Unsubscribe icon
- static const IconData unsubscribe = IconData(0xe1f3, fontFamily: family, fontPackage: package); - ///
Update icon
- static const IconData update = IconData(0xe1f4, fontFamily: family, fontPackage: package); - ///
Upload File icon
- static const IconData upload_file = IconData(0xe1f5, fontFamily: family, fontPackage: package); - ///
Upload icon
- static const IconData upload = IconData(0xe1f6, fontFamily: family, fontPackage: package); - ///
Usb Alt Device icon
- static const IconData usb_alt_device = IconData(0xe1f7, fontFamily: family, fontPackage: package); - ///
Usb Alt icon
- static const IconData usb_alt = IconData(0xe1f8, fontFamily: family, fontPackage: package); - ///
Usb icon
- static const IconData usb = IconData(0xe1f9, fontFamily: family, fontPackage: package); - ///
User Circle icon
- static const IconData user_circle = IconData(0xe1fa, fontFamily: family, fontPackage: package); - ///
User Minor icon
- static const IconData user_minor = IconData(0xe1fb, fontFamily: family, fontPackage: package); - ///
User icon
- static const IconData user = IconData(0xe1fc, fontFamily: family, fontPackage: package); - ///
User Settings icon
- static const IconData user_settings = IconData(0xe1fd, fontFamily: family, fontPackage: package); - ///
Vacation icon
- static const IconData vacation = IconData(0xe1fe, fontFamily: family, fontPackage: package); - ///
Verified icon
- static const IconData verified = IconData(0xe1ff, fontFamily: family, fontPackage: package); - ///
Very Satisfied icon
- static const IconData very_satisfied = IconData(0xe200, fontFamily: family, fontPackage: package); - ///
Video Camera icon
- static const IconData video_camera = IconData(0xe201, fontFamily: family, fontPackage: package); - ///
Video Off icon
- static const IconData video_off = IconData(0xe202, fontFamily: family, fontPackage: package); - ///
Video Play icon
- static const IconData video_play = IconData(0xe203, fontFamily: family, fontPackage: package); - ///
Video icon
- static const IconData video = IconData(0xe204, fontFamily: family, fontPackage: package); - ///
Visibility Off icon
- static const IconData visibility_off = IconData(0xe205, fontFamily: family, fontPackage: package); - ///
Visibility icon
- static const IconData visibility = IconData(0xe206, fontFamily: family, fontPackage: package); - ///
Volte icon
- static const IconData volte = IconData(0xe207, fontFamily: family, fontPackage: package); - ///
Volume Down icon
- static const IconData volume_down = IconData(0xe208, fontFamily: family, fontPackage: package); - ///
Volume Mute icon
- static const IconData volume_mute = IconData(0xe209, fontFamily: family, fontPackage: package); - ///
Volume Off icon
- static const IconData volume_off = IconData(0xe20a, fontFamily: family, fontPackage: package); - ///
Volume Up icon
- static const IconData volume_up = IconData(0xe20b, fontFamily: family, fontPackage: package); - ///
Warning Outline icon
- static const IconData warning_outline = IconData(0xe20c, fontFamily: family, fontPackage: package); - ///
Warning icon
- static const IconData warning = IconData(0xe20d, fontFamily: family, fontPackage: package); - ///
Watch icon
- static const IconData watch = IconData(0xe20e, fontFamily: family, fontPackage: package); - ///
Wb Image icon
- static const IconData wb_image = IconData(0xe20f, fontFamily: family, fontPackage: package); - ///
Wb icon
- static const IconData wb = IconData(0xe210, fontFamily: family, fontPackage: package); - ///
World Action icon
- static const IconData world_action = IconData(0xe211, fontFamily: family, fontPackage: package); - ///
World icon
- static const IconData world = IconData(0xe212, fontFamily: family, fontPackage: package); - ///
Write icon
- static const IconData write = IconData(0xe213, fontFamily: family, fontPackage: package); - ///
Youtube icon
- static const IconData youtube = IconData(0xe214, fontFamily: family, fontPackage: package); - ///
Zero Scale icon
- static const IconData zero_scale = IconData(0xe215, fontFamily: family, fontPackage: package); - ///
Zoom In Map icon
- static const IconData zoom_in_map = IconData(0xe216, fontFamily: family, fontPackage: package); - ///
Zoom In icon
- static const IconData zoom_in = IconData(0xe217, fontFamily: family, fontPackage: package); - ///
Zoom Out Map icon
- static const IconData zoom_out_map = IconData(0xe218, fontFamily: family, fontPackage: package); - ///
Zoom Out icon
- static const IconData zoom_out = IconData(0xe219, fontFamily: family, fontPackage: package); - - // Round Icons - ///
Activity icon (round)
- static const IconData activity_round = IconData(0xe001, fontFamily: familyRound, fontPackage: package); - ///
Add Alert icon (round)
- static const IconData add_alert_round = IconData(0xe002, fontFamily: familyRound, fontPackage: package); - ///
Add Box icon (round)
- static const IconData add_box_round = IconData(0xe003, fontFamily: familyRound, fontPackage: package); - ///
Add Call icon (round)
- static const IconData add_call_round = IconData(0xe004, fontFamily: familyRound, fontPackage: package); - ///
Add Circle Outline icon (round)
- static const IconData add_circle_outline_round = IconData(0xe005, fontFamily: familyRound, fontPackage: package); - ///
Add Circle icon (round)
- static const IconData add_circle_round = IconData(0xe006, fontFamily: familyRound, fontPackage: package); - ///
Add Group icon (round)
- static const IconData add_group_round = IconData(0xe007, fontFamily: familyRound, fontPackage: package); - ///
Add Person icon (round)
- static const IconData add_person_round = IconData(0xe008, fontFamily: familyRound, fontPackage: package); - ///
Add icon (round)
- static const IconData add_round = IconData(0xe009, fontFamily: familyRound, fontPackage: package); - ///
Add Task icon (round)
- static const IconData add_task_round = IconData(0xe00a, fontFamily: familyRound, fontPackage: package); - ///
Adjustments icon (round)
- static const IconData adjustments_round = IconData(0xe00b, fontFamily: familyRound, fontPackage: package); - ///
Alarm icon (round)
- static const IconData alarm_round = IconData(0xe00c, fontFamily: familyRound, fontPackage: package); - ///
Alert Active icon (round)
- static const IconData alert_active_round = IconData(0xe00d, fontFamily: familyRound, fontPackage: package); - ///
Alert Outline icon (round)
- static const IconData alert_outline_round = IconData(0xe00e, fontFamily: familyRound, fontPackage: package); - ///
Alert icon (round)
- static const IconData alert_round = IconData(0xe00f, fontFamily: familyRound, fontPackage: package); - ///
Align Center icon (round)
- static const IconData align_center_round = IconData(0xe010, fontFamily: familyRound, fontPackage: package); - ///
Align Horizontal Center icon (round)
- static const IconData align_horizontal_center_round = IconData(0xe011, fontFamily: familyRound, fontPackage: package); - ///
Align Horizontal Left icon (round)
- static const IconData align_horizontal_left_round = IconData(0xe012, fontFamily: familyRound, fontPackage: package); - ///
Align Horizontal Right icon (round)
- static const IconData align_horizontal_right_round = IconData(0xe013, fontFamily: familyRound, fontPackage: package); - ///
Align Left icon (round)
- static const IconData align_left_round = IconData(0xe014, fontFamily: familyRound, fontPackage: package); - ///
Align Right icon (round)
- static const IconData align_right_round = IconData(0xe015, fontFamily: familyRound, fontPackage: package); - ///
Align Vertical Bottom icon (round)
- static const IconData align_vertical_bottom_round = IconData(0xe016, fontFamily: familyRound, fontPackage: package); - ///
Align Vertical Center icon (round)
- static const IconData align_vertical_center_round = IconData(0xe017, fontFamily: familyRound, fontPackage: package); - ///
Align Vertical Top icon (round)
- static const IconData align_vertical_top_round = IconData(0xe018, fontFamily: familyRound, fontPackage: package); - ///
Analytics icon (round)
- static const IconData analytics_round = IconData(0xe019, fontFamily: familyRound, fontPackage: package); - ///
Android icon (round)
- static const IconData android_round = IconData(0xe01a, fontFamily: familyRound, fontPackage: package); - ///
Antenna icon (round)
- static const IconData antenna_round = IconData(0xe01b, fontFamily: familyRound, fontPackage: package); - ///
App Edit icon (round)
- static const IconData app_edit_round = IconData(0xe01c, fontFamily: familyRound, fontPackage: package); - ///
Apps icon (round)
- static const IconData apps_round = IconData(0xe01d, fontFamily: familyRound, fontPackage: package); - ///
Ar icon (round)
- static const IconData ar_round = IconData(0xe01e, fontFamily: familyRound, fontPackage: package); - ///
Arrow Back icon (round)
- static const IconData arrow_back_round = IconData(0xe01f, fontFamily: familyRound, fontPackage: package); - ///
Arrow Down icon (round)
- static const IconData arrow_down_round = IconData(0xe020, fontFamily: familyRound, fontPackage: package); - ///
Arrow Forward icon (round)
- static const IconData arrow_forward_round = IconData(0xe021, fontFamily: familyRound, fontPackage: package); - ///
Arrow Up icon (round)
- static const IconData arrow_up_round = IconData(0xe022, fontFamily: familyRound, fontPackage: package); - ///
Attachment icon (round)
- static const IconData attachment_round = IconData(0xe023, fontFamily: familyRound, fontPackage: package); - ///
Audio icon (round)
- static const IconData audio_round = IconData(0xe024, fontFamily: familyRound, fontPackage: package); - ///
Audit Activity icon (round)
- static const IconData audit_activity_round = IconData(0xe025, fontFamily: familyRound, fontPackage: package); - ///
Auto Delete icon (round)
- static const IconData auto_delete_round = IconData(0xe026, fontFamily: familyRound, fontPackage: package); - ///
Auto icon (round)
- static const IconData auto_round = IconData(0xe027, fontFamily: familyRound, fontPackage: package); - ///
Awb icon (round)
- static const IconData awb_round = IconData(0xe028, fontFamily: familyRound, fontPackage: package); - ///
Backspace icon (round)
- static const IconData backspace_round = IconData(0xe029, fontFamily: familyRound, fontPackage: package); - ///
Bad Mood icon (round)
- static const IconData bad_mood_round = IconData(0xe02a, fontFamily: familyRound, fontPackage: package); - ///
Barcode Bluetooth icon (round)
- static const IconData barcode_bluetooth_round = IconData(0xe02b, fontFamily: familyRound, fontPackage: package); - ///
Barcode Done icon (round)
- static const IconData barcode_done_round = IconData(0xe02c, fontFamily: familyRound, fontPackage: package); - ///
Barcode Image Scan icon (round)
- static const IconData barcode_image_scan_round = IconData(0xe02d, fontFamily: familyRound, fontPackage: package); - ///
Barcode Qr Code icon (round)
- static const IconData barcode_qr_code_round = IconData(0xe02e, fontFamily: familyRound, fontPackage: package); - ///
Barcode icon (round)
- static const IconData barcode_round = IconData(0xe02f, fontFamily: familyRound, fontPackage: package); - ///
Barcode Scanner Down icon (round)
- static const IconData barcode_scanner_down_round = IconData(0xe030, fontFamily: familyRound, fontPackage: package); - ///
Barcode Settings icon (round)
- static const IconData barcode_settings_round = IconData(0xe031, fontFamily: familyRound, fontPackage: package); - ///
Basket icon (round)
- static const IconData basket_round = IconData(0xe032, fontFamily: familyRound, fontPackage: package); - ///
Battery Alert icon (round)
- static const IconData battery_alert_round = IconData(0xe033, fontFamily: familyRound, fontPackage: package); - ///
Battery Charging icon (round)
- static const IconData battery_charging_round = IconData(0xe034, fontFamily: familyRound, fontPackage: package); - ///
Battery icon (round)
- static const IconData battery_round = IconData(0xe035, fontFamily: familyRound, fontPackage: package); - ///
Block Content icon (round)
- static const IconData block_content_round = IconData(0xe036, fontFamily: familyRound, fontPackage: package); - ///
Block icon (round)
- static const IconData block_round = IconData(0xe037, fontFamily: familyRound, fontPackage: package); - ///
Blog icon (round)
- static const IconData blog_round = IconData(0xe038, fontFamily: familyRound, fontPackage: package); - ///
Bluetooth Disabled icon (round)
- static const IconData bluetooth_disabled_round = IconData(0xe039, fontFamily: familyRound, fontPackage: package); - ///
Bluetooth icon (round)
- static const IconData bluetooth_round = IconData(0xe03a, fontFamily: familyRound, fontPackage: package); - ///
Bluetooth Searching icon (round)
- static const IconData bluetooth_searching_round = IconData(0xe03b, fontFamily: familyRound, fontPackage: package); - ///
Bold icon (round)
- static const IconData bold_round = IconData(0xe03c, fontFamily: familyRound, fontPackage: package); - ///
Bookmark Outline icon (round)
- static const IconData bookmark_outline_round = IconData(0xe03d, fontFamily: familyRound, fontPackage: package); - ///
Bookmark icon (round)
- static const IconData bookmark_round = IconData(0xe03e, fontFamily: familyRound, fontPackage: package); - ///
Brightness icon (round)
- static const IconData brightness_round = IconData(0xe03f, fontFamily: familyRound, fontPackage: package); - ///
Broadcast icon (round)
- static const IconData broadcast_round = IconData(0xe040, fontFamily: familyRound, fontPackage: package); - ///
Build icon (round)
- static const IconData build_round = IconData(0xe041, fontFamily: familyRound, fontPackage: package); - ///
Building icon (round)
- static const IconData building_round = IconData(0xe042, fontFamily: familyRound, fontPackage: package); - ///
Bullet List icon (round)
- static const IconData bullet_list_round = IconData(0xe043, fontFamily: familyRound, fontPackage: package); - ///
Bus icon (round)
- static const IconData bus_round = IconData(0xe044, fontFamily: familyRound, fontPackage: package); - ///
Cached icon (round)
- static const IconData cached_round = IconData(0xe045, fontFamily: familyRound, fontPackage: package); - ///
Cafe icon (round)
- static const IconData cafe_round = IconData(0xe046, fontFamily: familyRound, fontPackage: package); - ///
Calculator icon (round)
- static const IconData calculator_round = IconData(0xe047, fontFamily: familyRound, fontPackage: package); - ///
Calendar 3 Day icon (round)
- static const IconData calendar_3_day_round = IconData(0xe048, fontFamily: familyRound, fontPackage: package); - ///
Calendar Alt 1 icon (round)
- static const IconData calendar_alt_1_round = IconData(0xe049, fontFamily: familyRound, fontPackage: package); - ///
Calendar Alt 2 icon (round)
- static const IconData calendar_alt_2_round = IconData(0xe04a, fontFamily: familyRound, fontPackage: package); - ///
Calendar Available icon (round)
- static const IconData calendar_available_round = IconData(0xe04b, fontFamily: familyRound, fontPackage: package); - ///
Calendar Day icon (round)
- static const IconData calendar_day_round = IconData(0xe04c, fontFamily: familyRound, fontPackage: package); - ///
Calendar Edit icon (round)
- static const IconData calendar_edit_round = IconData(0xe04d, fontFamily: familyRound, fontPackage: package); - ///
Calendar Gantt icon (round)
- static const IconData calendar_gantt_round = IconData(0xe04e, fontFamily: familyRound, fontPackage: package); - ///
Calendar Monthly icon (round)
- static const IconData calendar_monthly_round = IconData(0xe04f, fontFamily: familyRound, fontPackage: package); - ///
Calendar Next icon (round)
- static const IconData calendar_next_round = IconData(0xe050, fontFamily: familyRound, fontPackage: package); - ///
Calendar Range icon (round)
- static const IconData calendar_range_round = IconData(0xe051, fontFamily: familyRound, fontPackage: package); - ///
Calendar Rollover icon (round)
- static const IconData calendar_rollover_round = IconData(0xe052, fontFamily: familyRound, fontPackage: package); - ///
Calendar icon (round)
- static const IconData calendar_round = IconData(0xe053, fontFamily: familyRound, fontPackage: package); - ///
Calendar Unavailable icon (round)
- static const IconData calendar_unavailable_round = IconData(0xe054, fontFamily: familyRound, fontPackage: package); - ///
Calendar Weekly icon (round)
- static const IconData calendar_weekly_round = IconData(0xe055, fontFamily: familyRound, fontPackage: package); - ///
Calendar Yearly icon (round)
- static const IconData calendar_yearly_round = IconData(0xe056, fontFamily: familyRound, fontPackage: package); - ///
Call Back icon (round)
- static const IconData call_back_round = IconData(0xe057, fontFamily: familyRound, fontPackage: package); - ///
Camera icon (round)
- static const IconData camera_round = IconData(0xe058, fontFamily: familyRound, fontPackage: package); - ///
Camera Shutter icon (round)
- static const IconData camera_shutter_round = IconData(0xe059, fontFamily: familyRound, fontPackage: package); - ///
Camera Switch Image icon (round)
- static const IconData camera_switch_image_round = IconData(0xe05a, fontFamily: familyRound, fontPackage: package); - ///
Camera Switch icon (round)
- static const IconData camera_switch_round = IconData(0xe05b, fontFamily: familyRound, fontPackage: package); - ///
Cancel Outline icon (round)
- static const IconData cancel_outline_round = IconData(0xe05c, fontFamily: familyRound, fontPackage: package); - ///
Cancel icon (round)
- static const IconData cancel_round = IconData(0xe05d, fontFamily: familyRound, fontPackage: package); - ///
Car icon (round)
- static const IconData car_round = IconData(0xe05e, fontFamily: familyRound, fontPackage: package); - ///
Card Orientation icon (round)
- static const IconData card_orientation_round = IconData(0xe05f, fontFamily: familyRound, fontPackage: package); - ///
Card With Chip icon (round)
- static const IconData card_with_chip_round = IconData(0xe060, fontFamily: familyRound, fontPackage: package); - ///
Caret Down icon (round)
- static const IconData caret_down_round = IconData(0xe061, fontFamily: familyRound, fontPackage: package); - ///
Caret Left icon (round)
- static const IconData caret_left_round = IconData(0xe062, fontFamily: familyRound, fontPackage: package); - ///
Caret Right icon (round)
- static const IconData caret_right_round = IconData(0xe063, fontFamily: familyRound, fontPackage: package); - ///
Caret Sort icon (round)
- static const IconData caret_sort_round = IconData(0xe064, fontFamily: familyRound, fontPackage: package); - ///
Caret Up icon (round)
- static const IconData caret_up_round = IconData(0xe065, fontFamily: familyRound, fontPackage: package); - ///
Cast Connected icon (round)
- static const IconData cast_connected_round = IconData(0xe066, fontFamily: familyRound, fontPackage: package); - ///
Cast icon (round)
- static const IconData cast_round = IconData(0xe067, fontFamily: familyRound, fontPackage: package); - ///
Cellular Signal icon (round)
- static const IconData cellular_signal_round = IconData(0xe068, fontFamily: familyRound, fontPackage: package); - ///
Certificate icon (round)
- static const IconData certificate_round = IconData(0xe069, fontFamily: familyRound, fontPackage: package); - ///
Certified icon (round)
- static const IconData certified_round = IconData(0xe06a, fontFamily: familyRound, fontPackage: package); - ///
Chain icon (round)
- static const IconData chain_round = IconData(0xe06b, fontFamily: familyRound, fontPackage: package); - ///
Chart Bar icon (round)
- static const IconData chart_bar_round = IconData(0xe06c, fontFamily: familyRound, fontPackage: package); - ///
Chart Bubble Charts icon (round)
- static const IconData chart_bubble_charts_round = IconData(0xe06d, fontFamily: familyRound, fontPackage: package); - ///
Chart Bubble icon (round)
- static const IconData chart_bubble_round = IconData(0xe06e, fontFamily: familyRound, fontPackage: package); - ///
Chart Doughnut icon (round)
- static const IconData chart_doughnut_round = IconData(0xe06f, fontFamily: familyRound, fontPackage: package); - ///
Chart Filled Enterprise icon (round)
- static const IconData chart_filled_enterprise_round = IconData(0xe070, fontFamily: familyRound, fontPackage: package); - ///
Chart Filled icon (round)
- static const IconData chart_filled_round = IconData(0xe071, fontFamily: familyRound, fontPackage: package); - ///
Chart Gantt icon (round)
- static const IconData chart_gantt_round = IconData(0xe072, fontFamily: familyRound, fontPackage: package); - ///
Chart Line Predict icon (round)
- static const IconData chart_line_predict_round = IconData(0xe073, fontFamily: familyRound, fontPackage: package); - ///
Chart Line icon (round)
- static const IconData chart_line_round = IconData(0xe074, fontFamily: familyRound, fontPackage: package); - ///
Chart Line Stacked icon (round)
- static const IconData chart_line_stacked_round = IconData(0xe075, fontFamily: familyRound, fontPackage: package); - ///
Chart Outline icon (round)
- static const IconData chart_outline_round = IconData(0xe076, fontFamily: familyRound, fontPackage: package); - ///
Chart Pie Charts icon (round)
- static const IconData chart_pie_charts_round = IconData(0xe077, fontFamily: familyRound, fontPackage: package); - ///
Chart Pie Content icon (round)
- static const IconData chart_pie_content_round = IconData(0xe078, fontFamily: familyRound, fontPackage: package); - ///
Chart Pie icon (round)
- static const IconData chart_pie_round = IconData(0xe079, fontFamily: familyRound, fontPackage: package); - ///
Chart Scatter Plot icon (round)
- static const IconData chart_scatter_plot_round = IconData(0xe07a, fontFamily: familyRound, fontPackage: package); - ///
Chart Stacked icon (round)
- static const IconData chart_stacked_round = IconData(0xe07b, fontFamily: familyRound, fontPackage: package); - ///
Chart Waterfall icon (round)
- static const IconData chart_waterfall_round = IconData(0xe07c, fontFamily: familyRound, fontPackage: package); - ///
Chat Bot icon (round)
- static const IconData chat_bot_round = IconData(0xe07d, fontFamily: familyRound, fontPackage: package); - ///
Chat Bubble Outline icon (round)
- static const IconData chat_bubble_outline_round = IconData(0xe07e, fontFamily: familyRound, fontPackage: package); - ///
Chat Bubble icon (round)
- static const IconData chat_bubble_round = IconData(0xe07f, fontFamily: familyRound, fontPackage: package); - ///
Chat Message Read icon (round)
- static const IconData chat_message_read_round = IconData(0xe080, fontFamily: familyRound, fontPackage: package); - ///
Chat Message Unread icon (round)
- static const IconData chat_message_unread_round = IconData(0xe081, fontFamily: familyRound, fontPackage: package); - ///
Chat icon (round)
- static const IconData chat_round = IconData(0xe082, fontFamily: familyRound, fontPackage: package); - ///
Chat Search icon (round)
- static const IconData chat_search_round = IconData(0xe083, fontFamily: familyRound, fontPackage: package); - ///
Check Box Empty icon (round)
- static const IconData check_box_empty_round = IconData(0xe084, fontFamily: familyRound, fontPackage: package); - ///
Check Box icon (round)
- static const IconData check_box_round = IconData(0xe085, fontFamily: familyRound, fontPackage: package); - ///
Check Circle Outline Alt icon (round)
- static const IconData check_circle_outline_alt_round = IconData(0xe086, fontFamily: familyRound, fontPackage: package); - ///
Check Circle Outline icon (round)
- static const IconData check_circle_outline_round = IconData(0xe087, fontFamily: familyRound, fontPackage: package); - ///
Check Circle icon (round)
- static const IconData check_circle_round = IconData(0xe088, fontFamily: familyRound, fontPackage: package); - ///
Check Mark icon (round)
- static const IconData check_mark_round = IconData(0xe089, fontFamily: familyRound, fontPackage: package); - ///
Checklist icon (round)
- static const IconData checklist_round = IconData(0xe08a, fontFamily: familyRound, fontPackage: package); - ///
Chevron Left icon (round)
- static const IconData chevron_left_round = IconData(0xe08b, fontFamily: familyRound, fontPackage: package); - ///
Chevron Right icon (round)
- static const IconData chevron_right_round = IconData(0xe08c, fontFamily: familyRound, fontPackage: package); - ///
Choices icon (round)
- static const IconData choices_round = IconData(0xe08d, fontFamily: familyRound, fontPackage: package); - ///
Clipboard Action icon (round)
- static const IconData clipboard_action_round = IconData(0xe08e, fontFamily: familyRound, fontPackage: package); - ///
Clipboard icon (round)
- static const IconData clipboard_round = IconData(0xe08f, fontFamily: familyRound, fontPackage: package); - ///
Clock Available icon (round)
- static const IconData clock_available_round = IconData(0xe090, fontFamily: familyRound, fontPackage: package); - ///
Clock Bid icon (round)
- static const IconData clock_bid_round = IconData(0xe091, fontFamily: familyRound, fontPackage: package); - ///
Clock Edit icon (round)
- static const IconData clock_edit_round = IconData(0xe092, fontFamily: familyRound, fontPackage: package); - ///
Clock Flexible icon (round)
- static const IconData clock_flexible_round = IconData(0xe093, fontFamily: familyRound, fontPackage: package); - ///
Clock In Progress icon (round)
- static const IconData clock_in_progress_round = IconData(0xe094, fontFamily: familyRound, fontPackage: package); - ///
Clock Info icon (round)
- static const IconData clock_info_round = IconData(0xe095, fontFamily: familyRound, fontPackage: package); - ///
Clock Missed icon (round)
- static const IconData clock_missed_round = IconData(0xe096, fontFamily: familyRound, fontPackage: package); - ///
Clock On icon (round)
- static const IconData clock_on_round = IconData(0xe097, fontFamily: familyRound, fontPackage: package); - ///
Clock Outline icon (round)
- static const IconData clock_outline_round = IconData(0xe098, fontFamily: familyRound, fontPackage: package); - ///
Clock Rollover icon (round)
- static const IconData clock_rollover_round = IconData(0xe099, fontFamily: familyRound, fontPackage: package); - ///
Clock icon (round)
- static const IconData clock_round = IconData(0xe09a, fontFamily: familyRound, fontPackage: package); - ///
Clock Segment icon (round)
- static const IconData clock_segment_round = IconData(0xe09b, fontFamily: familyRound, fontPackage: package); - ///
Clock Start icon (round)
- static const IconData clock_start_round = IconData(0xe09c, fontFamily: familyRound, fontPackage: package); - ///
Clock Stop icon (round)
- static const IconData clock_stop_round = IconData(0xe09d, fontFamily: familyRound, fontPackage: package); - ///
Clock Switch icon (round)
- static const IconData clock_switch_round = IconData(0xe09e, fontFamily: familyRound, fontPackage: package); - ///
Clock Timer icon (round)
- static const IconData clock_timer_round = IconData(0xe09f, fontFamily: familyRound, fontPackage: package); - ///
Clock Upcoming icon (round)
- static const IconData clock_upcoming_round = IconData(0xe0a0, fontFamily: familyRound, fontPackage: package); - ///
Close icon (round)
- static const IconData close_round = IconData(0xe0a1, fontFamily: familyRound, fontPackage: package); - ///
Closed Caption icon (round)
- static const IconData closed_caption_round = IconData(0xe0a2, fontFamily: familyRound, fontPackage: package); - ///
Cloud Done icon (round)
- static const IconData cloud_done_round = IconData(0xe0a3, fontFamily: familyRound, fontPackage: package); - ///
Cloud Download icon (round)
- static const IconData cloud_download_round = IconData(0xe0a4, fontFamily: familyRound, fontPackage: package); - ///
Cloud Off icon (round)
- static const IconData cloud_off_round = IconData(0xe0a5, fontFamily: familyRound, fontPackage: package); - ///
Cloud Outline icon (round)
- static const IconData cloud_outline_round = IconData(0xe0a6, fontFamily: familyRound, fontPackage: package); - ///
Cloud icon (round)
- static const IconData cloud_round = IconData(0xe0a7, fontFamily: familyRound, fontPackage: package); - ///
Cloud Upload icon (round)
- static const IconData cloud_upload_round = IconData(0xe0a8, fontFamily: familyRound, fontPackage: package); - ///
Color Fill icon (round)
- static const IconData color_fill_round = IconData(0xe0a9, fontFamily: familyRound, fontPackage: package); - ///
Columns icon (round)
- static const IconData columns_round = IconData(0xe0aa, fontFamily: familyRound, fontPackage: package); - ///
Contactless Pay icon (round)
- static const IconData contactless_pay_round = IconData(0xe0ab, fontFamily: familyRound, fontPackage: package); - ///
Content icon (round)
- static const IconData content_round = IconData(0xe0ac, fontFamily: familyRound, fontPackage: package); - ///
Contrast Image icon (round)
- static const IconData contrast_image_round = IconData(0xe0ad, fontFamily: familyRound, fontPackage: package); - ///
Contrast icon (round)
- static const IconData contrast_round = IconData(0xe0ae, fontFamily: familyRound, fontPackage: package); - ///
Conversation icon (round)
- static const IconData conversation_round = IconData(0xe0af, fontFamily: familyRound, fontPackage: package); - ///
Copy File icon (round)
- static const IconData copy_file_round = IconData(0xe0b0, fontFamily: familyRound, fontPackage: package); - ///
Create New Folder icon (round)
- static const IconData create_new_folder_round = IconData(0xe0b1, fontFamily: familyRound, fontPackage: package); - ///
Credit Card icon (round)
- static const IconData credit_card_round = IconData(0xe0b2, fontFamily: familyRound, fontPackage: package); - ///
Credit Card Swipe icon (round)
- static const IconData credit_card_swipe_round = IconData(0xe0b3, fontFamily: familyRound, fontPackage: package); - ///
Crop icon (round)
- static const IconData crop_round = IconData(0xe0b4, fontFamily: familyRound, fontPackage: package); - ///
Dark Mode icon (round)
- static const IconData dark_mode_round = IconData(0xe0b5, fontFamily: familyRound, fontPackage: package); - ///
Dashboard icon (round)
- static const IconData dashboard_round = IconData(0xe0b6, fontFamily: familyRound, fontPackage: package); - ///
Delete Forever icon (round)
- static const IconData delete_forever_round = IconData(0xe0b7, fontFamily: familyRound, fontPackage: package); - ///
Delete Outline icon (round)
- static const IconData delete_outline_round = IconData(0xe0b8, fontFamily: familyRound, fontPackage: package); - ///
Delete icon (round)
- static const IconData delete_round = IconData(0xe0b9, fontFamily: familyRound, fontPackage: package); - ///
Desktop icon (round)
- static const IconData desktop_round = IconData(0xe0ba, fontFamily: familyRound, fontPackage: package); - ///
Device Settings icon (round)
- static const IconData device_settings_round = IconData(0xe0bb, fontFamily: familyRound, fontPackage: package); - ///
Devices Ecosystem icon (round)
- static const IconData devices_ecosystem_round = IconData(0xe0bc, fontFamily: familyRound, fontPackage: package); - ///
Devices icon (round)
- static const IconData devices_round = IconData(0xe0bd, fontFamily: familyRound, fontPackage: package); - ///
Dialpad icon (round)
- static const IconData dialpad_round = IconData(0xe0be, fontFamily: familyRound, fontPackage: package); - ///
Dislike icon (round)
- static const IconData dislike_round = IconData(0xe0bf, fontFamily: familyRound, fontPackage: package); - ///
Distribute Horizontal icon (round)
- static const IconData distribute_horizontal_round = IconData(0xe0c0, fontFamily: familyRound, fontPackage: package); - ///
Distribute Vertical icon (round)
- static const IconData distribute_vertical_round = IconData(0xe0c1, fontFamily: familyRound, fontPackage: package); - ///
Doc Attach icon (round)
- static const IconData doc_attach_round = IconData(0xe0c2, fontFamily: familyRound, fontPackage: package); - ///
Document icon (round)
- static const IconData document_round = IconData(0xe0c3, fontFamily: familyRound, fontPackage: package); - ///
Dollar icon (round)
- static const IconData dollar_round = IconData(0xe0c4, fontFamily: familyRound, fontPackage: package); - ///
Download icon (round)
- static const IconData download_round = IconData(0xe0c5, fontFamily: familyRound, fontPackage: package); - ///
Downloading icon (round)
- static const IconData downloading_round = IconData(0xe0c6, fontFamily: familyRound, fontPackage: package); - ///
Drop Down Circle icon (round)
- static const IconData drop_down_circle_round = IconData(0xe0c7, fontFamily: familyRound, fontPackage: package); - ///
Eas icon (round)
- static const IconData eas_round = IconData(0xe0c8, fontFamily: familyRound, fontPackage: package); - ///
Edit Border icon (round)
- static const IconData edit_border_round = IconData(0xe0c9, fontFamily: familyRound, fontPackage: package); - ///
Edit icon (round)
- static const IconData edit_round = IconData(0xe0ca, fontFamily: familyRound, fontPackage: package); - ///
Email Alt icon (round)
- static const IconData email_alt_round = IconData(0xe0cb, fontFamily: familyRound, fontPackage: package); - ///
Email Outline icon (round)
- static const IconData email_outline_round = IconData(0xe0cc, fontFamily: familyRound, fontPackage: package); - ///
Email Reply All icon (round)
- static const IconData email_reply_all_round = IconData(0xe0cd, fontFamily: familyRound, fontPackage: package); - ///
Email icon (round)
- static const IconData email_round = IconData(0xe0ce, fontFamily: familyRound, fontPackage: package); - ///
End Call icon (round)
- static const IconData end_call_round = IconData(0xe0cf, fontFamily: familyRound, fontPackage: package); - ///
Enterprise Diagnostics icon (round)
- static const IconData enterprise_diagnostics_round = IconData(0xe0d0, fontFamily: familyRound, fontPackage: package); - ///
Environmental icon (round)
- static const IconData environmental_round = IconData(0xe0d1, fontFamily: familyRound, fontPackage: package); - ///
Error Outline icon (round)
- static const IconData error_outline_round = IconData(0xe0d2, fontFamily: familyRound, fontPackage: package); - ///
Error icon (round)
- static const IconData error_round = IconData(0xe0d3, fontFamily: familyRound, fontPackage: package); - ///
Ethernet icon (round)
- static const IconData ethernet_round = IconData(0xe0d4, fontFamily: familyRound, fontPackage: package); - ///
Exit icon (round)
- static const IconData exit_round = IconData(0xe0d5, fontFamily: familyRound, fontPackage: package); - ///
Expand Less icon (round)
- static const IconData expand_less_round = IconData(0xe0d6, fontFamily: familyRound, fontPackage: package); - ///
Expand More icon (round)
- static const IconData expand_more_round = IconData(0xe0d7, fontFamily: familyRound, fontPackage: package); - ///
Eye Dropper icon (round)
- static const IconData eye_dropper_round = IconData(0xe0d8, fontFamily: familyRound, fontPackage: package); - ///
Eye Preview icon (round)
- static const IconData eye_preview_round = IconData(0xe0d9, fontFamily: familyRound, fontPackage: package); - ///
Face Id icon (round)
- static const IconData face_id_round = IconData(0xe0da, fontFamily: familyRound, fontPackage: package); - ///
Facebook icon (round)
- static const IconData facebook_round = IconData(0xe0db, fontFamily: familyRound, fontPackage: package); - ///
Factory icon (round)
- static const IconData factory_round = IconData(0xe0dc, fontFamily: familyRound, fontPackage: package); - ///
Fast Forward icon (round)
- static const IconData fast_forward_round = IconData(0xe0dd, fontFamily: familyRound, fontPackage: package); - ///
Fast Rewind icon (round)
- static const IconData fast_rewind_round = IconData(0xe0de, fontFamily: familyRound, fontPackage: package); - ///
File icon (round)
- static const IconData file_round = IconData(0xe0df, fontFamily: familyRound, fontPackage: package); - ///
Filter Alt icon (round)
- static const IconData filter_alt_round = IconData(0xe0e0, fontFamily: familyRound, fontPackage: package); - ///
Filter icon (round)
- static const IconData filter_round = IconData(0xe0e1, fontFamily: familyRound, fontPackage: package); - ///
Finished Download icon (round)
- static const IconData finished_download_round = IconData(0xe0e2, fontFamily: familyRound, fontPackage: package); - ///
First Page icon (round)
- static const IconData first_page_round = IconData(0xe0e3, fontFamily: familyRound, fontPackage: package); - ///
Flag icon (round)
- static const IconData flag_round = IconData(0xe0e4, fontFamily: familyRound, fontPackage: package); - ///
Flight Mode icon (round)
- static const IconData flight_mode_round = IconData(0xe0e5, fontFamily: familyRound, fontPackage: package); - ///
Flight icon (round)
- static const IconData flight_round = IconData(0xe0e6, fontFamily: familyRound, fontPackage: package); - ///
Flip icon (round)
- static const IconData flip_round = IconData(0xe0e7, fontFamily: familyRound, fontPackage: package); - ///
Folder File icon (round)
- static const IconData folder_file_round = IconData(0xe0e8, fontFamily: familyRound, fontPackage: package); - ///
Folder Outline icon (round)
- static const IconData folder_outline_round = IconData(0xe0e9, fontFamily: familyRound, fontPackage: package); - ///
Folder icon (round)
- static const IconData folder_round = IconData(0xe0ea, fontFamily: familyRound, fontPackage: package); - ///
Font Size Decrease icon (round)
- static const IconData font_size_decrease_round = IconData(0xe0eb, fontFamily: familyRound, fontPackage: package); - ///
Font Size Increase icon (round)
- static const IconData font_size_increase_round = IconData(0xe0ec, fontFamily: familyRound, fontPackage: package); - ///
Format Shapes icon (round)
- static const IconData format_shapes_round = IconData(0xe0ed, fontFamily: familyRound, fontPackage: package); - ///
Forward icon (round)
- static const IconData forward_round = IconData(0xe0ee, fontFamily: familyRound, fontPackage: package); - ///
Freezer icon (round)
- static const IconData freezer_round = IconData(0xe0ef, fontFamily: familyRound, fontPackage: package); - ///
Full Screen Exit icon (round)
- static const IconData full_screen_exit_round = IconData(0xe0f0, fontFamily: familyRound, fontPackage: package); - ///
Full Screen icon (round)
- static const IconData full_screen_round = IconData(0xe0f1, fontFamily: familyRound, fontPackage: package); - ///
Gif icon (round)
- static const IconData gif_round = IconData(0xe0f2, fontFamily: familyRound, fontPackage: package); - ///
Glossary icon (round)
- static const IconData glossary_round = IconData(0xe0f3, fontFamily: familyRound, fontPackage: package); - ///
Grid Off icon (round)
- static const IconData grid_off_round = IconData(0xe0f4, fontFamily: familyRound, fontPackage: package); - ///
Grid On icon (round)
- static const IconData grid_on_round = IconData(0xe0f5, fontFamily: familyRound, fontPackage: package); - ///
Grid View icon (round)
- static const IconData grid_view_round = IconData(0xe0f6, fontFamily: familyRound, fontPackage: package); - ///
Group icon (round)
- static const IconData group_round = IconData(0xe0f7, fontFamily: familyRound, fontPackage: package); - ///
Groups icon (round)
- static const IconData groups_round = IconData(0xe0f8, fontFamily: familyRound, fontPackage: package); - ///
Hamburger Menu Navigation Rail icon (round)
- static const IconData hamburger_menu_navigation_rail_round = IconData(0xe0f9, fontFamily: familyRound, fontPackage: package); - ///
Hamburger Menu icon (round)
- static const IconData hamburger_menu_round = IconData(0xe0fa, fontFamily: familyRound, fontPackage: package); - ///
Hamburger Menu Thick icon (round)
- static const IconData hamburger_menu_thick_round = IconData(0xe0fb, fontFamily: familyRound, fontPackage: package); - ///
Hand icon (round)
- static const IconData hand_round = IconData(0xe0fc, fontFamily: familyRound, fontPackage: package); - ///
Happy icon (round)
- static const IconData happy_round = IconData(0xe0fd, fontFamily: familyRound, fontPackage: package); - ///
Hdmi icon (round)
- static const IconData hdmi_round = IconData(0xe0fe, fontFamily: familyRound, fontPackage: package); - ///
Hdr icon (round)
- static const IconData hdr_round = IconData(0xe0ff, fontFamily: familyRound, fontPackage: package); - ///
Headphones icon (round)
- static const IconData headphones_round = IconData(0xe100, fontFamily: familyRound, fontPackage: package); - ///
Headset icon (round)
- static const IconData headset_round = IconData(0xe101, fontFamily: familyRound, fontPackage: package); - ///
Help Outline icon (round)
- static const IconData help_outline_round = IconData(0xe102, fontFamily: familyRound, fontPackage: package); - ///
Help icon (round)
- static const IconData help_round = IconData(0xe103, fontFamily: familyRound, fontPackage: package); - ///
History icon (round)
- static const IconData history_round = IconData(0xe104, fontFamily: familyRound, fontPackage: package); - ///
Home icon (round)
- static const IconData home_round = IconData(0xe105, fontFamily: familyRound, fontPackage: package); - ///
Hourglass icon (round)
- static const IconData hourglass_round = IconData(0xe106, fontFamily: familyRound, fontPackage: package); - ///
How Do I icon (round)
- static const IconData how_do_i_round = IconData(0xe107, fontFamily: familyRound, fontPackage: package); - ///
Image Library icon (round)
- static const IconData image_library_round = IconData(0xe108, fontFamily: familyRound, fontPackage: package); - ///
Image icon (round)
- static const IconData image_round = IconData(0xe109, fontFamily: familyRound, fontPackage: package); - ///
Important Notification icon (round)
- static const IconData important_notification_round = IconData(0xe10a, fontFamily: familyRound, fontPackage: package); - ///
Inbox icon (round)
- static const IconData inbox_round = IconData(0xe10b, fontFamily: familyRound, fontPackage: package); - ///
Indent Decrease icon (round)
- static const IconData indent_decrease_round = IconData(0xe10c, fontFamily: familyRound, fontPackage: package); - ///
Indent Increase icon (round)
- static const IconData indent_increase_round = IconData(0xe10d, fontFamily: familyRound, fontPackage: package); - ///
Indeterminate Check Box icon (round)
- static const IconData indeterminate_check_box_round = IconData(0xe10e, fontFamily: familyRound, fontPackage: package); - ///
Info icon (round)
- static const IconData info_round = IconData(0xe10f, fontFamily: familyRound, fontPackage: package); - ///
Instagram icon (round)
- static const IconData instagram_round = IconData(0xe110, fontFamily: familyRound, fontPackage: package); - ///
Ios Share icon (round)
- static const IconData ios_share_round = IconData(0xe111, fontFamily: familyRound, fontPackage: package); - ///
Iso icon (round)
- static const IconData iso_round = IconData(0xe112, fontFamily: familyRound, fontPackage: package); - ///
Issue Audit icon (round)
- static const IconData issue_audit_round = IconData(0xe113, fontFamily: familyRound, fontPackage: package); - ///
Italic icon (round)
- static const IconData italic_round = IconData(0xe114, fontFamily: familyRound, fontPackage: package); - ///
Jpg Attach icon (round)
- static const IconData jpg_attach_round = IconData(0xe115, fontFamily: familyRound, fontPackage: package); - ///
Justify icon (round)
- static const IconData justify_round = IconData(0xe116, fontFamily: familyRound, fontPackage: package); - ///
Keyboard icon (round)
- static const IconData keyboard_round = IconData(0xe117, fontFamily: familyRound, fontPackage: package); - ///
Label icon (round)
- static const IconData label_round = IconData(0xe118, fontFamily: familyRound, fontPackage: package); - ///
Laptop icon (round)
- static const IconData laptop_round = IconData(0xe119, fontFamily: familyRound, fontPackage: package); - ///
Last Page icon (round)
- static const IconData last_page_round = IconData(0xe11a, fontFamily: familyRound, fontPackage: package); - ///
Layers icon (round)
- static const IconData layers_round = IconData(0xe11b, fontFamily: familyRound, fontPackage: package); - ///
Light Mode icon (round)
- static const IconData light_mode_round = IconData(0xe11c, fontFamily: familyRound, fontPackage: package); - ///
Light Rail Train icon (round)
- static const IconData light_rail_train_round = IconData(0xe11d, fontFamily: familyRound, fontPackage: package); - ///
Lightbulb icon (round)
- static const IconData lightbulb_round = IconData(0xe11e, fontFamily: familyRound, fontPackage: package); - ///
Like icon (round)
- static const IconData like_round = IconData(0xe11f, fontFamily: familyRound, fontPackage: package); - ///
Line Spacing icon (round)
- static const IconData line_spacing_round = IconData(0xe120, fontFamily: familyRound, fontPackage: package); - ///
Link Add icon (round)
- static const IconData link_add_round = IconData(0xe121, fontFamily: familyRound, fontPackage: package); - ///
Link icon (round)
- static const IconData link_round = IconData(0xe122, fontFamily: familyRound, fontPackage: package); - ///
Linkedin icon (round)
- static const IconData linkedin_round = IconData(0xe123, fontFamily: familyRound, fontPackage: package); - ///
List Alt icon (round)
- static const IconData list_alt_round = IconData(0xe124, fontFamily: familyRound, fontPackage: package); - ///
List Bullet Contained icon (round)
- static const IconData list_bullet_contained_round = IconData(0xe125, fontFamily: familyRound, fontPackage: package); - ///
List Feedback icon (round)
- static const IconData list_feedback_round = IconData(0xe126, fontFamily: familyRound, fontPackage: package); - ///
List Form icon (round)
- static const IconData list_form_round = IconData(0xe127, fontFamily: familyRound, fontPackage: package); - ///
List icon (round)
- static const IconData list_round = IconData(0xe128, fontFamily: familyRound, fontPackage: package); - ///
Local Shipping icon (round)
- static const IconData local_shipping_round = IconData(0xe129, fontFamily: familyRound, fontPackage: package); - ///
Location Off icon (round)
- static const IconData location_off_round = IconData(0xe12a, fontFamily: familyRound, fontPackage: package); - ///
Location Point icon (round)
- static const IconData location_point_round = IconData(0xe12b, fontFamily: familyRound, fontPackage: package); - ///
Location icon (round)
- static const IconData location_round = IconData(0xe12c, fontFamily: familyRound, fontPackage: package); - ///
Lock Alt icon (round)
- static const IconData lock_alt_round = IconData(0xe12d, fontFamily: familyRound, fontPackage: package); - ///
Lock icon (round)
- static const IconData lock_round = IconData(0xe12e, fontFamily: familyRound, fontPackage: package); - ///
Lock Undo icon (round)
- static const IconData lock_undo_round = IconData(0xe12f, fontFamily: familyRound, fontPackage: package); - ///
Log In icon (round)
- static const IconData log_in_round = IconData(0xe130, fontFamily: familyRound, fontPackage: package); - ///
Log Out icon (round)
- static const IconData log_out_round = IconData(0xe131, fontFamily: familyRound, fontPackage: package); - ///
Love Outline icon (round)
- static const IconData love_outline_round = IconData(0xe132, fontFamily: familyRound, fontPackage: package); - ///
Love icon (round)
- static const IconData love_round = IconData(0xe133, fontFamily: familyRound, fontPackage: package); - ///
Maintenance icon (round)
- static const IconData maintenance_round = IconData(0xe134, fontFamily: familyRound, fontPackage: package); - ///
Map icon (round)
- static const IconData map_round = IconData(0xe135, fontFamily: familyRound, fontPackage: package); - ///
Meal icon (round)
- static const IconData meal_round = IconData(0xe136, fontFamily: familyRound, fontPackage: package); - ///
Medium icon (round)
- static const IconData medium_round = IconData(0xe137, fontFamily: familyRound, fontPackage: package); - ///
Memory icon (round)
- static const IconData memory_round = IconData(0xe138, fontFamily: familyRound, fontPackage: package); - ///
Message icon (round)
- static const IconData message_round = IconData(0xe139, fontFamily: familyRound, fontPackage: package); - ///
Microphone Off icon (round)
- static const IconData microphone_off_round = IconData(0xe13a, fontFamily: familyRound, fontPackage: package); - ///
Microphone Outline icon (round)
- static const IconData microphone_outline_round = IconData(0xe13b, fontFamily: familyRound, fontPackage: package); - ///
Microphone icon (round)
- static const IconData microphone_round = IconData(0xe13c, fontFamily: familyRound, fontPackage: package); - ///
Mobile Friendly icon (round)
- static const IconData mobile_friendly_round = IconData(0xe13d, fontFamily: familyRound, fontPackage: package); - ///
Money Euro icon (round)
- static const IconData money_euro_round = IconData(0xe13e, fontFamily: familyRound, fontPackage: package); - ///
Money Pound icon (round)
- static const IconData money_pound_round = IconData(0xe13f, fontFamily: familyRound, fontPackage: package); - ///
Money Usd icon (round)
- static const IconData money_usd_round = IconData(0xe140, fontFamily: familyRound, fontPackage: package); - ///
Monitor icon (round)
- static const IconData monitor_round = IconData(0xe141, fontFamily: familyRound, fontPackage: package); - ///
More Horizontal icon (round)
- static const IconData more_horizontal_round = IconData(0xe142, fontFamily: familyRound, fontPackage: package); - ///
More Vertical icon (round)
- static const IconData more_vertical_round = IconData(0xe143, fontFamily: familyRound, fontPackage: package); - ///
My Location icon (round)
- static const IconData my_location_round = IconData(0xe144, fontFamily: familyRound, fontPackage: package); - ///
Navigate icon (round)
- static const IconData navigate_round = IconData(0xe145, fontFamily: familyRound, fontPackage: package); - ///
Navigation icon (round)
- static const IconData navigation_round = IconData(0xe146, fontFamily: familyRound, fontPackage: package); - ///
Near Me icon (round)
- static const IconData near_me_round = IconData(0xe147, fontFamily: familyRound, fontPackage: package); - ///
Network Signal icon (round)
- static const IconData network_signal_round = IconData(0xe148, fontFamily: familyRound, fontPackage: package); - ///
New Chat icon (round)
- static const IconData new_chat_round = IconData(0xe149, fontFamily: familyRound, fontPackage: package); - ///
Nfc icon (round)
- static const IconData nfc_round = IconData(0xe14a, fontFamily: familyRound, fontPackage: package); - ///
Night icon (round)
- static const IconData night_round = IconData(0xe14b, fontFamily: familyRound, fontPackage: package); - ///
No Color icon (round)
- static const IconData no_color_round = IconData(0xe14c, fontFamily: familyRound, fontPackage: package); - ///
Note icon (round)
- static const IconData note_round = IconData(0xe14d, fontFamily: familyRound, fontPackage: package); - ///
Notifications Off icon (round)
- static const IconData notifications_off_round = IconData(0xe14e, fontFamily: familyRound, fontPackage: package); - ///
Numbered List icon (round)
- static const IconData numbered_list_round = IconData(0xe14f, fontFamily: familyRound, fontPackage: package); - ///
Open In Full icon (round)
- static const IconData open_in_full_round = IconData(0xe150, fontFamily: familyRound, fontPackage: package); - ///
Open In New Window icon (round)
- static const IconData open_in_new_window_round = IconData(0xe151, fontFamily: familyRound, fontPackage: package); - ///
Open New Off icon (round)
- static const IconData open_new_off_round = IconData(0xe152, fontFamily: familyRound, fontPackage: package); - ///
Page Height icon (round)
- static const IconData page_height_round = IconData(0xe153, fontFamily: familyRound, fontPackage: package); - ///
Page Rotate icon (round)
- static const IconData page_rotate_round = IconData(0xe154, fontFamily: familyRound, fontPackage: package); - ///
Page Width icon (round)
- static const IconData page_width_round = IconData(0xe155, fontFamily: familyRound, fontPackage: package); - ///
Palette icon (round)
- static const IconData palette_round = IconData(0xe156, fontFamily: familyRound, fontPackage: package); - ///
Partner icon (round)
- static const IconData partner_round = IconData(0xe157, fontFamily: familyRound, fontPackage: package); - ///
Pause Circle icon (round)
- static const IconData pause_circle_round = IconData(0xe158, fontFamily: familyRound, fontPackage: package); - ///
Pause icon (round)
- static const IconData pause_round = IconData(0xe159, fontFamily: familyRound, fontPackage: package); - ///
Pdf Attach icon (round)
- static const IconData pdf_attach_round = IconData(0xe15a, fontFamily: familyRound, fontPackage: package); - ///
Pending icon (round)
- static const IconData pending_round = IconData(0xe15b, fontFamily: familyRound, fontPackage: package); - ///
Person Admin icon (round)
- static const IconData person_admin_round = IconData(0xe15c, fontFamily: familyRound, fontPackage: package); - ///
Person Assign icon (round)
- static const IconData person_assign_round = IconData(0xe15d, fontFamily: familyRound, fontPackage: package); - ///
Person Clock icon (round)
- static const IconData person_clock_round = IconData(0xe15e, fontFamily: familyRound, fontPackage: package); - ///
Person Info icon (round)
- static const IconData person_info_round = IconData(0xe15f, fontFamily: familyRound, fontPackage: package); - ///
Person Manager icon (round)
- static const IconData person_manager_round = IconData(0xe160, fontFamily: familyRound, fontPackage: package); - ///
Person Move icon (round)
- static const IconData person_move_round = IconData(0xe161, fontFamily: familyRound, fontPackage: package); - ///
Person Outline icon (round)
- static const IconData person_outline_round = IconData(0xe162, fontFamily: familyRound, fontPackage: package); - ///
Person icon (round)
- static const IconData person_round = IconData(0xe163, fontFamily: familyRound, fontPackage: package); - ///
Person Search icon (round)
- static const IconData person_search_round = IconData(0xe164, fontFamily: familyRound, fontPackage: package); - ///
Person Swap icon (round)
- static const IconData person_swap_round = IconData(0xe165, fontFamily: familyRound, fontPackage: package); - ///
Person Walk icon (round)
- static const IconData person_walk_round = IconData(0xe166, fontFamily: familyRound, fontPackage: package); - ///
Phone Android icon (round)
- static const IconData phone_android_round = IconData(0xe167, fontFamily: familyRound, fontPackage: package); - ///
Phone Bluetooth Speaker icon (round)
- static const IconData phone_bluetooth_speaker_round = IconData(0xe168, fontFamily: familyRound, fontPackage: package); - ///
Phone In Talk icon (round)
- static const IconData phone_in_talk_round = IconData(0xe169, fontFamily: familyRound, fontPackage: package); - ///
Phone Iphone icon (round)
- static const IconData phone_iphone_round = IconData(0xe16a, fontFamily: familyRound, fontPackage: package); - ///
Phone icon (round)
- static const IconData phone_round = IconData(0xe16b, fontFamily: familyRound, fontPackage: package); - ///
Phonelink icon (round)
- static const IconData phonelink_round = IconData(0xe16c, fontFamily: familyRound, fontPackage: package); - ///
Phrase icon (round)
- static const IconData phrase_round = IconData(0xe16d, fontFamily: familyRound, fontPackage: package); - ///
Pin icon (round)
- static const IconData pin_round = IconData(0xe16e, fontFamily: familyRound, fontPackage: package); - ///
Place icon (round)
- static const IconData place_round = IconData(0xe16f, fontFamily: familyRound, fontPackage: package); - ///
Planogram icon (round)
- static const IconData planogram_round = IconData(0xe170, fontFamily: familyRound, fontPackage: package); - ///
Play Circle icon (round)
- static const IconData play_circle_round = IconData(0xe171, fontFamily: familyRound, fontPackage: package); - ///
Play Outline icon (round)
- static const IconData play_outline_round = IconData(0xe172, fontFamily: familyRound, fontPackage: package); - ///
Play icon (round)
- static const IconData play_round = IconData(0xe173, fontFamily: familyRound, fontPackage: package); - ///
Png Attach icon (round)
- static const IconData png_attach_round = IconData(0xe174, fontFamily: familyRound, fontPackage: package); - ///
Point Gift icon (round)
- static const IconData point_gift_round = IconData(0xe175, fontFamily: familyRound, fontPackage: package); - ///
Point Heart icon (round)
- static const IconData point_heart_round = IconData(0xe176, fontFamily: familyRound, fontPackage: package); - ///
Point Money icon (round)
- static const IconData point_money_round = IconData(0xe177, fontFamily: familyRound, fontPackage: package); - ///
Point Star icon (round)
- static const IconData point_star_round = IconData(0xe178, fontFamily: familyRound, fontPackage: package); - ///
Point Token icon (round)
- static const IconData point_token_round = IconData(0xe179, fontFamily: familyRound, fontPackage: package); - ///
Portrait icon (round)
- static const IconData portrait_round = IconData(0xe17a, fontFamily: familyRound, fontPackage: package); - ///
Ppt Attach icon (round)
- static const IconData ppt_attach_round = IconData(0xe17b, fontFamily: familyRound, fontPackage: package); - ///
Price icon (round)
- static const IconData price_round = IconData(0xe17c, fontFamily: familyRound, fontPackage: package); - ///
Printer icon (round)
- static const IconData printer_round = IconData(0xe17d, fontFamily: familyRound, fontPackage: package); - ///
Priority icon (round)
- static const IconData priority_round = IconData(0xe17e, fontFamily: familyRound, fontPackage: package); - ///
Pro icon (round)
- static const IconData pro_round = IconData(0xe17f, fontFamily: familyRound, fontPackage: package); - ///
Productivity Apps icon (round)
- static const IconData productivity_apps_round = IconData(0xe180, fontFamily: familyRound, fontPackage: package); - ///
Ptt icon (round)
- static const IconData ptt_round = IconData(0xe181, fontFamily: familyRound, fontPackage: package); - ///
Publish icon (round)
- static const IconData publish_round = IconData(0xe182, fontFamily: familyRound, fontPackage: package); - ///
Push Pin icon (round)
- static const IconData push_pin_round = IconData(0xe183, fontFamily: familyRound, fontPackage: package); - ///
Qr Code icon (round)
- static const IconData qr_code_round = IconData(0xe184, fontFamily: familyRound, fontPackage: package); - ///
Queue icon (round)
- static const IconData queue_round = IconData(0xe185, fontFamily: familyRound, fontPackage: package); - ///
Radio Button Checked icon (round)
- static const IconData radio_button_checked_round = IconData(0xe186, fontFamily: familyRound, fontPackage: package); - ///
Radio Button Unchecked icon (round)
- static const IconData radio_button_unchecked_round = IconData(0xe187, fontFamily: familyRound, fontPackage: package); - ///
React Add icon (round)
- static const IconData react_add_round = IconData(0xe188, fontFamily: familyRound, fontPackage: package); - ///
React Thumbsup icon (round)
- static const IconData react_thumbsup_round = IconData(0xe189, fontFamily: familyRound, fontPackage: package); - ///
Recall icon (round)
- static const IconData recall_round = IconData(0xe18a, fontFamily: familyRound, fontPackage: package); - ///
Receipt icon (round)
- static const IconData receipt_round = IconData(0xe18b, fontFamily: familyRound, fontPackage: package); - ///
Recording icon (round)
- static const IconData recording_round = IconData(0xe18c, fontFamily: familyRound, fontPackage: package); - ///
Redo icon (round)
- static const IconData redo_round = IconData(0xe18d, fontFamily: familyRound, fontPackage: package); - ///
Refresh icon (round)
- static const IconData refresh_round = IconData(0xe18e, fontFamily: familyRound, fontPackage: package); - ///
Remove Box icon (round)
- static const IconData remove_box_round = IconData(0xe18f, fontFamily: familyRound, fontPackage: package); - ///
Remove Circle Outline icon (round)
- static const IconData remove_circle_outline_round = IconData(0xe190, fontFamily: familyRound, fontPackage: package); - ///
Remove Circle icon (round)
- static const IconData remove_circle_round = IconData(0xe191, fontFamily: familyRound, fontPackage: package); - ///
Remove Group icon (round)
- static const IconData remove_group_round = IconData(0xe192, fontFamily: familyRound, fontPackage: package); - ///
Remove Person icon (round)
- static const IconData remove_person_round = IconData(0xe193, fontFamily: familyRound, fontPackage: package); - ///
Remove icon (round)
- static const IconData remove_round = IconData(0xe194, fontFamily: familyRound, fontPackage: package); - ///
Renew icon (round)
- static const IconData renew_round = IconData(0xe195, fontFamily: familyRound, fontPackage: package); - ///
Reorder icon (round)
- static const IconData reorder_round = IconData(0xe196, fontFamily: familyRound, fontPackage: package); - ///
Repeat icon (round)
- static const IconData repeat_round = IconData(0xe197, fontFamily: familyRound, fontPackage: package); - ///
Replay icon (round)
- static const IconData replay_round = IconData(0xe198, fontFamily: familyRound, fontPackage: package); - ///
Reply icon (round)
- static const IconData reply_round = IconData(0xe199, fontFamily: familyRound, fontPackage: package); - ///
Report icon (round)
- static const IconData report_round = IconData(0xe19a, fontFamily: familyRound, fontPackage: package); - ///
Restart Alt icon (round)
- static const IconData restart_alt_round = IconData(0xe19b, fontFamily: familyRound, fontPackage: package); - ///
Review icon (round)
- static const IconData review_round = IconData(0xe19c, fontFamily: familyRound, fontPackage: package); - ///
Road Map icon (round)
- static const IconData road_map_round = IconData(0xe19d, fontFamily: familyRound, fontPackage: package); - ///
Rotate Left icon (round)
- static const IconData rotate_left_round = IconData(0xe19e, fontFamily: familyRound, fontPackage: package); - ///
Rotate Right icon (round)
- static const IconData rotate_right_round = IconData(0xe19f, fontFamily: familyRound, fontPackage: package); - ///
Rss Feed icon (round)
- static const IconData rss_feed_round = IconData(0xe1a0, fontFamily: familyRound, fontPackage: package); - ///
Rules icon (round)
- static const IconData rules_round = IconData(0xe1a1, fontFamily: familyRound, fontPackage: package); - ///
Sad icon (round)
- static const IconData sad_round = IconData(0xe1a2, fontFamily: familyRound, fontPackage: package); - ///
Satisfied icon (round)
- static const IconData satisfied_round = IconData(0xe1a3, fontFamily: familyRound, fontPackage: package); - ///
Save Alt icon (round)
- static const IconData save_alt_round = IconData(0xe1a4, fontFamily: familyRound, fontPackage: package); - ///
Save Content icon (round)
- static const IconData save_content_round = IconData(0xe1a5, fontFamily: familyRound, fontPackage: package); - ///
Save icon (round)
- static const IconData save_round = IconData(0xe1a6, fontFamily: familyRound, fontPackage: package); - ///
Scan Rate icon (round)
- static const IconData scan_rate_round = IconData(0xe1a7, fontFamily: familyRound, fontPackage: package); - ///
Scanner icon (round)
- static const IconData scanner_round = IconData(0xe1a8, fontFamily: familyRound, fontPackage: package); - ///
Schedule icon (round)
- static const IconData schedule_round = IconData(0xe1a9, fontFamily: familyRound, fontPackage: package); - ///
School icon (round)
- static const IconData school_round = IconData(0xe1aa, fontFamily: familyRound, fontPackage: package); - ///
Screen Rotation icon (round)
- static const IconData screen_rotation_round = IconData(0xe1ab, fontFamily: familyRound, fontPackage: package); - ///
Sd Card icon (round)
- static const IconData sd_card_round = IconData(0xe1ac, fontFamily: familyRound, fontPackage: package); - ///
Search icon (round)
- static const IconData search_round = IconData(0xe1ad, fontFamily: familyRound, fontPackage: package); - ///
Security Check icon (round)
- static const IconData security_check_round = IconData(0xe1ae, fontFamily: familyRound, fontPackage: package); - ///
Security icon (round)
- static const IconData security_round = IconData(0xe1af, fontFamily: familyRound, fontPackage: package); - ///
Send icon (round)
- static const IconData send_round = IconData(0xe1b0, fontFamily: familyRound, fontPackage: package); - ///
Settings icon (round)
- static const IconData settings_round = IconData(0xe1b1, fontFamily: familyRound, fontPackage: package); - ///
Shape Recognition icon (round)
- static const IconData shape_recognition_round = IconData(0xe1b2, fontFamily: familyRound, fontPackage: package); - ///
Share icon (round)
- static const IconData share_round = IconData(0xe1b3, fontFamily: familyRound, fontPackage: package); - ///
Shared Folder icon (round)
- static const IconData shared_folder_round = IconData(0xe1b4, fontFamily: familyRound, fontPackage: package); - ///
Ship icon (round)
- static const IconData ship_round = IconData(0xe1b5, fontFamily: familyRound, fontPackage: package); - ///
Sim Card icon (round)
- static const IconData sim_card_round = IconData(0xe1b6, fontFamily: familyRound, fontPackage: package); - ///
Skip Next icon (round)
- static const IconData skip_next_round = IconData(0xe1b7, fontFamily: familyRound, fontPackage: package); - ///
Skip Previous icon (round)
- static const IconData skip_previous_round = IconData(0xe1b8, fontFamily: familyRound, fontPackage: package); - ///
Slide Show icon (round)
- static const IconData slide_show_round = IconData(0xe1b9, fontFamily: familyRound, fontPackage: package); - ///
Smart Phone icon (round)
- static const IconData smart_phone_round = IconData(0xe1ba, fontFamily: familyRound, fontPackage: package); - ///
Sms icon (round)
- static const IconData sms_round = IconData(0xe1bb, fontFamily: familyRound, fontPackage: package); - ///
Snooze icon (round)
- static const IconData snooze_round = IconData(0xe1bc, fontFamily: familyRound, fontPackage: package); - ///
Solutions icon (round)
- static const IconData solutions_round = IconData(0xe1bd, fontFamily: familyRound, fontPackage: package); - ///
Sort Content icon (round)
- static const IconData sort_content_round = IconData(0xe1be, fontFamily: familyRound, fontPackage: package); - ///
Sort icon (round)
- static const IconData sort_round = IconData(0xe1bf, fontFamily: familyRound, fontPackage: package); - ///
Speaker icon (round)
- static const IconData speaker_round = IconData(0xe1c0, fontFamily: familyRound, fontPackage: package); - ///
Star Half icon (round)
- static const IconData star_half_round = IconData(0xe1c1, fontFamily: familyRound, fontPackage: package); - ///
Star Outline icon (round)
- static const IconData star_outline_round = IconData(0xe1c2, fontFamily: familyRound, fontPackage: package); - ///
Star icon (round)
- static const IconData star_round = IconData(0xe1c3, fontFamily: familyRound, fontPackage: package); - ///
Steps icon (round)
- static const IconData steps_round = IconData(0xe1c4, fontFamily: familyRound, fontPackage: package); - ///
Sticker icon (round)
- static const IconData sticker_round = IconData(0xe1c5, fontFamily: familyRound, fontPackage: package); - ///
Stop Circle icon (round)
- static const IconData stop_circle_round = IconData(0xe1c6, fontFamily: familyRound, fontPackage: package); - ///
Stop icon (round)
- static const IconData stop_round = IconData(0xe1c7, fontFamily: familyRound, fontPackage: package); - ///
Store Release icon (round)
- static const IconData store_release_round = IconData(0xe1c8, fontFamily: familyRound, fontPackage: package); - ///
Store icon (round)
- static const IconData store_round = IconData(0xe1c9, fontFamily: familyRound, fontPackage: package); - ///
Store Swap icon (round)
- static const IconData store_swap_round = IconData(0xe1ca, fontFamily: familyRound, fontPackage: package); - ///
Store Transfer icon (round)
- static const IconData store_transfer_round = IconData(0xe1cb, fontFamily: familyRound, fontPackage: package); - ///
Straighten icon (round)
- static const IconData straighten_round = IconData(0xe1cc, fontFamily: familyRound, fontPackage: package); - ///
Strategy icon (round)
- static const IconData strategy_round = IconData(0xe1cd, fontFamily: familyRound, fontPackage: package); - ///
Strikethrough icon (round)
- static const IconData strikethrough_round = IconData(0xe1ce, fontFamily: familyRound, fontPackage: package); - ///
Subscribe icon (round)
- static const IconData subscribe_round = IconData(0xe1cf, fontFamily: familyRound, fontPackage: package); - ///
Swap icon (round)
- static const IconData swap_round = IconData(0xe1d0, fontFamily: familyRound, fontPackage: package); - ///
Switch User icon (round)
- static const IconData switch_user_round = IconData(0xe1d1, fontFamily: familyRound, fontPackage: package); - ///
Sync Action icon (round)
- static const IconData sync_action_round = IconData(0xe1d2, fontFamily: familyRound, fontPackage: package); - ///
Sync Disabled icon (round)
- static const IconData sync_disabled_round = IconData(0xe1d3, fontFamily: familyRound, fontPackage: package); - ///
Sync icon (round)
- static const IconData sync_round = IconData(0xe1d4, fontFamily: familyRound, fontPackage: package); - ///
Table icon (round)
- static const IconData table_round = IconData(0xe1d5, fontFamily: familyRound, fontPackage: package); - ///
Tablet Mac icon (round)
- static const IconData tablet_mac_round = IconData(0xe1d6, fontFamily: familyRound, fontPackage: package); - ///
Tablet icon (round)
- static const IconData tablet_round = IconData(0xe1d7, fontFamily: familyRound, fontPackage: package); - ///
Tag Enterprise icon (round)
- static const IconData tag_enterprise_round = IconData(0xe1d8, fontFamily: familyRound, fontPackage: package); - ///
Tag icon (round)
- static const IconData tag_round = IconData(0xe1d9, fontFamily: familyRound, fontPackage: package); - ///
Tap To Pay icon (round)
- static const IconData tap_to_pay_round = IconData(0xe1da, fontFamily: familyRound, fontPackage: package); - ///
Taxi icon (round)
- static const IconData taxi_round = IconData(0xe1db, fontFamily: familyRound, fontPackage: package); - ///
Text Color icon (round)
- static const IconData text_color_round = IconData(0xe1dc, fontFamily: familyRound, fontPackage: package); - ///
Tiers icon (round)
- static const IconData tiers_round = IconData(0xe1dd, fontFamily: familyRound, fontPackage: package); - ///
Timecard Approve icon (round)
- static const IconData timecard_approve_round = IconData(0xe1de, fontFamily: familyRound, fontPackage: package); - ///
Timecard icon (round)
- static const IconData timecard_round = IconData(0xe1df, fontFamily: familyRound, fontPackage: package); - ///
Timecard Warning icon (round)
- static const IconData timecard_warning_round = IconData(0xe1e0, fontFamily: familyRound, fontPackage: package); - ///
Timer icon (round)
- static const IconData timer_round = IconData(0xe1e1, fontFamily: familyRound, fontPackage: package); - ///
Toggle Off icon (round)
- static const IconData toggle_off_round = IconData(0xe1e2, fontFamily: familyRound, fontPackage: package); - ///
Toggle On icon (round)
- static const IconData toggle_on_round = IconData(0xe1e3, fontFamily: familyRound, fontPackage: package); - ///
Touch icon (round)
- static const IconData touch_round = IconData(0xe1e4, fontFamily: familyRound, fontPackage: package); - ///
Train icon (round)
- static const IconData train_round = IconData(0xe1e5, fontFamily: familyRound, fontPackage: package); - ///
Transfer icon (round)
- static const IconData transfer_round = IconData(0xe1e6, fontFamily: familyRound, fontPackage: package); - ///
Trending Down icon (round)
- static const IconData trending_down_round = IconData(0xe1e7, fontFamily: familyRound, fontPackage: package); - ///
Trending Up icon (round)
- static const IconData trending_up_round = IconData(0xe1e8, fontFamily: familyRound, fontPackage: package); - ///
Tv icon (round)
- static const IconData tv_round = IconData(0xe1e9, fontFamily: familyRound, fontPackage: package); - ///
Twitter icon (round)
- static const IconData twitter_round = IconData(0xe1ea, fontFamily: familyRound, fontPackage: package); - ///
Type icon (round)
- static const IconData type_round = IconData(0xe1eb, fontFamily: familyRound, fontPackage: package); - ///
Uhf Rfid icon (round)
- static const IconData uhf_rfid_round = IconData(0xe1ec, fontFamily: familyRound, fontPackage: package); - ///
Underline icon (round)
- static const IconData underline_round = IconData(0xe1ed, fontFamily: familyRound, fontPackage: package); - ///
Undo icon (round)
- static const IconData undo_round = IconData(0xe1ee, fontFamily: familyRound, fontPackage: package); - ///
Unfold Less icon (round)
- static const IconData unfold_less_round = IconData(0xe1ef, fontFamily: familyRound, fontPackage: package); - ///
Unfold More icon (round)
- static const IconData unfold_more_round = IconData(0xe1f0, fontFamily: familyRound, fontPackage: package); - ///
Unlock Alt icon (round)
- static const IconData unlock_alt_round = IconData(0xe1f1, fontFamily: familyRound, fontPackage: package); - ///
Unlock icon (round)
- static const IconData unlock_round = IconData(0xe1f2, fontFamily: familyRound, fontPackage: package); - ///
Unsubscribe icon (round)
- static const IconData unsubscribe_round = IconData(0xe1f3, fontFamily: familyRound, fontPackage: package); - ///
Update icon (round)
- static const IconData update_round = IconData(0xe1f4, fontFamily: familyRound, fontPackage: package); - ///
Upload File icon (round)
- static const IconData upload_file_round = IconData(0xe1f5, fontFamily: familyRound, fontPackage: package); - ///
Upload icon (round)
- static const IconData upload_round = IconData(0xe1f6, fontFamily: familyRound, fontPackage: package); - ///
Usb Alt Device icon (round)
- static const IconData usb_alt_device_round = IconData(0xe1f7, fontFamily: familyRound, fontPackage: package); - ///
Usb Alt icon (round)
- static const IconData usb_alt_round = IconData(0xe1f8, fontFamily: familyRound, fontPackage: package); - ///
Usb icon (round)
- static const IconData usb_round = IconData(0xe1f9, fontFamily: familyRound, fontPackage: package); - ///
User Circle icon (round)
- static const IconData user_circle_round = IconData(0xe1fa, fontFamily: familyRound, fontPackage: package); - ///
User Minor icon (round)
- static const IconData user_minor_round = IconData(0xe1fb, fontFamily: familyRound, fontPackage: package); - ///
User icon (round)
- static const IconData user_round = IconData(0xe1fc, fontFamily: familyRound, fontPackage: package); - ///
User Settings icon (round)
- static const IconData user_settings_round = IconData(0xe1fd, fontFamily: familyRound, fontPackage: package); - ///
Vacation icon (round)
- static const IconData vacation_round = IconData(0xe1fe, fontFamily: familyRound, fontPackage: package); - ///
Verified icon (round)
- static const IconData verified_round = IconData(0xe1ff, fontFamily: familyRound, fontPackage: package); - ///
Very Satisfied icon (round)
- static const IconData very_satisfied_round = IconData(0xe200, fontFamily: familyRound, fontPackage: package); - ///
Video Camera icon (round)
- static const IconData video_camera_round = IconData(0xe201, fontFamily: familyRound, fontPackage: package); - ///
Video Off icon (round)
- static const IconData video_off_round = IconData(0xe202, fontFamily: familyRound, fontPackage: package); - ///
Video Play icon (round)
- static const IconData video_play_round = IconData(0xe203, fontFamily: familyRound, fontPackage: package); - ///
Video icon (round)
- static const IconData video_round = IconData(0xe204, fontFamily: familyRound, fontPackage: package); - ///
Visibility Off icon (round)
- static const IconData visibility_off_round = IconData(0xe205, fontFamily: familyRound, fontPackage: package); - ///
Visibility icon (round)
- static const IconData visibility_round = IconData(0xe206, fontFamily: familyRound, fontPackage: package); - ///
Volte icon (round)
- static const IconData volte_round = IconData(0xe207, fontFamily: familyRound, fontPackage: package); - ///
Volume Down icon (round)
- static const IconData volume_down_round = IconData(0xe208, fontFamily: familyRound, fontPackage: package); - ///
Volume Mute icon (round)
- static const IconData volume_mute_round = IconData(0xe209, fontFamily: familyRound, fontPackage: package); - ///
Volume Off icon (round)
- static const IconData volume_off_round = IconData(0xe20a, fontFamily: familyRound, fontPackage: package); - ///
Volume Up icon (round)
- static const IconData volume_up_round = IconData(0xe20b, fontFamily: familyRound, fontPackage: package); - ///
Warning Outline icon (round)
- static const IconData warning_outline_round = IconData(0xe20c, fontFamily: familyRound, fontPackage: package); - ///
Warning icon (round)
- static const IconData warning_round = IconData(0xe20d, fontFamily: familyRound, fontPackage: package); - ///
Watch icon (round)
- static const IconData watch_round = IconData(0xe20e, fontFamily: familyRound, fontPackage: package); - ///
Wb Image icon (round)
- static const IconData wb_image_round = IconData(0xe20f, fontFamily: familyRound, fontPackage: package); - ///
Wb icon (round)
- static const IconData wb_round = IconData(0xe210, fontFamily: familyRound, fontPackage: package); - ///
World Action icon (round)
- static const IconData world_action_round = IconData(0xe211, fontFamily: familyRound, fontPackage: package); - ///
World icon (round)
- static const IconData world_round = IconData(0xe212, fontFamily: familyRound, fontPackage: package); - ///
Write icon (round)
- static const IconData write_round = IconData(0xe213, fontFamily: familyRound, fontPackage: package); - ///
Youtube icon (round)
- static const IconData youtube_round = IconData(0xe214, fontFamily: familyRound, fontPackage: package); - ///
Zero Scale icon (round)
- static const IconData zero_scale_round = IconData(0xe215, fontFamily: familyRound, fontPackage: package); - ///
Zoom In Map icon (round)
- static const IconData zoom_in_map_round = IconData(0xe216, fontFamily: familyRound, fontPackage: package); - ///
Zoom In icon (round)
- static const IconData zoom_in_round = IconData(0xe217, fontFamily: familyRound, fontPackage: package); - ///
Zoom Out Map icon (round)
- static const IconData zoom_out_map_round = IconData(0xe218, fontFamily: familyRound, fontPackage: package); - ///
Zoom Out icon (round)
- static const IconData zoom_out_round = IconData(0xe219, fontFamily: familyRound, fontPackage: package); - - // Sharp Icons - ///
Activity icon (sharp)
- static const IconData activity_sharp = IconData(0xe001, fontFamily: familySharp, fontPackage: package); - ///
Add Alert icon (sharp)
- static const IconData add_alert_sharp = IconData(0xe002, fontFamily: familySharp, fontPackage: package); - ///
Add Box icon (sharp)
- static const IconData add_box_sharp = IconData(0xe003, fontFamily: familySharp, fontPackage: package); - ///
Add Call icon (sharp)
- static const IconData add_call_sharp = IconData(0xe004, fontFamily: familySharp, fontPackage: package); - ///
Add Circle Outline icon (sharp)
- static const IconData add_circle_outline_sharp = IconData(0xe005, fontFamily: familySharp, fontPackage: package); - ///
Add Circle icon (sharp)
- static const IconData add_circle_sharp = IconData(0xe006, fontFamily: familySharp, fontPackage: package); - ///
Add Group icon (sharp)
- static const IconData add_group_sharp = IconData(0xe007, fontFamily: familySharp, fontPackage: package); - ///
Add Person icon (sharp)
- static const IconData add_person_sharp = IconData(0xe008, fontFamily: familySharp, fontPackage: package); - ///
Add icon (sharp)
- static const IconData add_sharp = IconData(0xe009, fontFamily: familySharp, fontPackage: package); - ///
Add Task icon (sharp)
- static const IconData add_task_sharp = IconData(0xe00a, fontFamily: familySharp, fontPackage: package); - ///
Adjustments icon (sharp)
- static const IconData adjustments_sharp = IconData(0xe00b, fontFamily: familySharp, fontPackage: package); - ///
Alarm icon (sharp)
- static const IconData alarm_sharp = IconData(0xe00c, fontFamily: familySharp, fontPackage: package); - ///
Alert Active icon (sharp)
- static const IconData alert_active_sharp = IconData(0xe00d, fontFamily: familySharp, fontPackage: package); - ///
Alert Outline icon (sharp)
- static const IconData alert_outline_sharp = IconData(0xe00e, fontFamily: familySharp, fontPackage: package); - ///
Alert icon (sharp)
- static const IconData alert_sharp = IconData(0xe00f, fontFamily: familySharp, fontPackage: package); - ///
Align Center icon (sharp)
- static const IconData align_center_sharp = IconData(0xe010, fontFamily: familySharp, fontPackage: package); - ///
Align Horizontal Center icon (sharp)
- static const IconData align_horizontal_center_sharp = IconData(0xe011, fontFamily: familySharp, fontPackage: package); - ///
Align Horizontal Left icon (sharp)
- static const IconData align_horizontal_left_sharp = IconData(0xe012, fontFamily: familySharp, fontPackage: package); - ///
Align Horizontal Right icon (sharp)
- static const IconData align_horizontal_right_sharp = IconData(0xe013, fontFamily: familySharp, fontPackage: package); - ///
Align Left icon (sharp)
- static const IconData align_left_sharp = IconData(0xe014, fontFamily: familySharp, fontPackage: package); - ///
Align Right icon (sharp)
- static const IconData align_right_sharp = IconData(0xe015, fontFamily: familySharp, fontPackage: package); - ///
Align Vertical Bottom icon (sharp)
- static const IconData align_vertical_bottom_sharp = IconData(0xe016, fontFamily: familySharp, fontPackage: package); - ///
Align Vertical Center icon (sharp)
- static const IconData align_vertical_center_sharp = IconData(0xe017, fontFamily: familySharp, fontPackage: package); - ///
Align Vertical Top icon (sharp)
- static const IconData align_vertical_top_sharp = IconData(0xe018, fontFamily: familySharp, fontPackage: package); - ///
Analytics icon (sharp)
- static const IconData analytics_sharp = IconData(0xe019, fontFamily: familySharp, fontPackage: package); - ///
Android icon (sharp)
- static const IconData android_sharp = IconData(0xe01a, fontFamily: familySharp, fontPackage: package); - ///
Antenna icon (sharp)
- static const IconData antenna_sharp = IconData(0xe01b, fontFamily: familySharp, fontPackage: package); - ///
App Edit icon (sharp)
- static const IconData app_edit_sharp = IconData(0xe01c, fontFamily: familySharp, fontPackage: package); - ///
Apps icon (sharp)
- static const IconData apps_sharp = IconData(0xe01d, fontFamily: familySharp, fontPackage: package); - ///
Ar icon (sharp)
- static const IconData ar_sharp = IconData(0xe01e, fontFamily: familySharp, fontPackage: package); - ///
Arrow Back icon (sharp)
- static const IconData arrow_back_sharp = IconData(0xe01f, fontFamily: familySharp, fontPackage: package); - ///
Arrow Down icon (sharp)
- static const IconData arrow_down_sharp = IconData(0xe020, fontFamily: familySharp, fontPackage: package); - ///
Arrow Forward icon (sharp)
- static const IconData arrow_forward_sharp = IconData(0xe021, fontFamily: familySharp, fontPackage: package); - ///
Arrow Up icon (sharp)
- static const IconData arrow_up_sharp = IconData(0xe022, fontFamily: familySharp, fontPackage: package); - ///
Attachment icon (sharp)
- static const IconData attachment_sharp = IconData(0xe023, fontFamily: familySharp, fontPackage: package); - ///
Audio icon (sharp)
- static const IconData audio_sharp = IconData(0xe024, fontFamily: familySharp, fontPackage: package); - ///
Audit Activity icon (sharp)
- static const IconData audit_activity_sharp = IconData(0xe025, fontFamily: familySharp, fontPackage: package); - ///
Auto Delete icon (sharp)
- static const IconData auto_delete_sharp = IconData(0xe026, fontFamily: familySharp, fontPackage: package); - ///
Auto icon (sharp)
- static const IconData auto_sharp = IconData(0xe027, fontFamily: familySharp, fontPackage: package); - ///
Awb icon (sharp)
- static const IconData awb_sharp = IconData(0xe028, fontFamily: familySharp, fontPackage: package); - ///
Backspace icon (sharp)
- static const IconData backspace_sharp = IconData(0xe029, fontFamily: familySharp, fontPackage: package); - ///
Bad Mood icon (sharp)
- static const IconData bad_mood_sharp = IconData(0xe02a, fontFamily: familySharp, fontPackage: package); - ///
Barcode Bluetooth icon (sharp)
- static const IconData barcode_bluetooth_sharp = IconData(0xe02b, fontFamily: familySharp, fontPackage: package); - ///
Barcode Done icon (sharp)
- static const IconData barcode_done_sharp = IconData(0xe02c, fontFamily: familySharp, fontPackage: package); - ///
Barcode Image Scan icon (sharp)
- static const IconData barcode_image_scan_sharp = IconData(0xe02d, fontFamily: familySharp, fontPackage: package); - ///
Barcode Qr Code icon (sharp)
- static const IconData barcode_qr_code_sharp = IconData(0xe02e, fontFamily: familySharp, fontPackage: package); - ///
Barcode Scanner Down icon (sharp)
- static const IconData barcode_scanner_down_sharp = IconData(0xe02f, fontFamily: familySharp, fontPackage: package); - ///
Barcode Settings icon (sharp)
- static const IconData barcode_settings_sharp = IconData(0xe030, fontFamily: familySharp, fontPackage: package); - ///
Barcode icon (sharp)
- static const IconData barcode_sharp = IconData(0xe031, fontFamily: familySharp, fontPackage: package); - ///
Basket icon (sharp)
- static const IconData basket_sharp = IconData(0xe032, fontFamily: familySharp, fontPackage: package); - ///
Battery Alert icon (sharp)
- static const IconData battery_alert_sharp = IconData(0xe033, fontFamily: familySharp, fontPackage: package); - ///
Battery Charging icon (sharp)
- static const IconData battery_charging_sharp = IconData(0xe034, fontFamily: familySharp, fontPackage: package); - ///
Battery icon (sharp)
- static const IconData battery_sharp = IconData(0xe035, fontFamily: familySharp, fontPackage: package); - ///
Block Content icon (sharp)
- static const IconData block_content_sharp = IconData(0xe036, fontFamily: familySharp, fontPackage: package); - ///
Block icon (sharp)
- static const IconData block_sharp = IconData(0xe037, fontFamily: familySharp, fontPackage: package); - ///
Blog icon (sharp)
- static const IconData blog_sharp = IconData(0xe038, fontFamily: familySharp, fontPackage: package); - ///
Bluetooth Disabled icon (sharp)
- static const IconData bluetooth_disabled_sharp = IconData(0xe039, fontFamily: familySharp, fontPackage: package); - ///
Bluetooth Searching icon (sharp)
- static const IconData bluetooth_searching_sharp = IconData(0xe03a, fontFamily: familySharp, fontPackage: package); - ///
Bluetooth icon (sharp)
- static const IconData bluetooth_sharp = IconData(0xe03b, fontFamily: familySharp, fontPackage: package); - ///
Bold icon (sharp)
- static const IconData bold_sharp = IconData(0xe03c, fontFamily: familySharp, fontPackage: package); - ///
Bookmark Outline icon (sharp)
- static const IconData bookmark_outline_sharp = IconData(0xe03d, fontFamily: familySharp, fontPackage: package); - ///
Bookmark icon (sharp)
- static const IconData bookmark_sharp = IconData(0xe03e, fontFamily: familySharp, fontPackage: package); - ///
Brightness icon (sharp)
- static const IconData brightness_sharp = IconData(0xe03f, fontFamily: familySharp, fontPackage: package); - ///
Broadcast icon (sharp)
- static const IconData broadcast_sharp = IconData(0xe040, fontFamily: familySharp, fontPackage: package); - ///
Build icon (sharp)
- static const IconData build_sharp = IconData(0xe041, fontFamily: familySharp, fontPackage: package); - ///
Building icon (sharp)
- static const IconData building_sharp = IconData(0xe042, fontFamily: familySharp, fontPackage: package); - ///
Bullet List icon (sharp)
- static const IconData bullet_list_sharp = IconData(0xe043, fontFamily: familySharp, fontPackage: package); - ///
Bus icon (sharp)
- static const IconData bus_sharp = IconData(0xe044, fontFamily: familySharp, fontPackage: package); - ///
Cached icon (sharp)
- static const IconData cached_sharp = IconData(0xe045, fontFamily: familySharp, fontPackage: package); - ///
Cafe icon (sharp)
- static const IconData cafe_sharp = IconData(0xe046, fontFamily: familySharp, fontPackage: package); - ///
Calculator icon (sharp)
- static const IconData calculator_sharp = IconData(0xe047, fontFamily: familySharp, fontPackage: package); - ///
Calendar 3 Day icon (sharp)
- static const IconData calendar_3_day_sharp = IconData(0xe048, fontFamily: familySharp, fontPackage: package); - ///
Calendar Alt 1 icon (sharp)
- static const IconData calendar_alt_1_sharp = IconData(0xe049, fontFamily: familySharp, fontPackage: package); - ///
Calendar Alt 2 icon (sharp)
- static const IconData calendar_alt_2_sharp = IconData(0xe04a, fontFamily: familySharp, fontPackage: package); - ///
Calendar Available icon (sharp)
- static const IconData calendar_available_sharp = IconData(0xe04b, fontFamily: familySharp, fontPackage: package); - ///
Calendar Day icon (sharp)
- static const IconData calendar_day_sharp = IconData(0xe04c, fontFamily: familySharp, fontPackage: package); - ///
Calendar Edit icon (sharp)
- static const IconData calendar_edit_sharp = IconData(0xe04d, fontFamily: familySharp, fontPackage: package); - ///
Calendar Gantt icon (sharp)
- static const IconData calendar_gantt_sharp = IconData(0xe04e, fontFamily: familySharp, fontPackage: package); - ///
Calendar Monthly icon (sharp)
- static const IconData calendar_monthly_sharp = IconData(0xe04f, fontFamily: familySharp, fontPackage: package); - ///
Calendar Next icon (sharp)
- static const IconData calendar_next_sharp = IconData(0xe050, fontFamily: familySharp, fontPackage: package); - ///
Calendar Range icon (sharp)
- static const IconData calendar_range_sharp = IconData(0xe051, fontFamily: familySharp, fontPackage: package); - ///
Calendar Rollover icon (sharp)
- static const IconData calendar_rollover_sharp = IconData(0xe052, fontFamily: familySharp, fontPackage: package); - ///
Calendar icon (sharp)
- static const IconData calendar_sharp = IconData(0xe053, fontFamily: familySharp, fontPackage: package); - ///
Calendar Unavailable icon (sharp)
- static const IconData calendar_unavailable_sharp = IconData(0xe054, fontFamily: familySharp, fontPackage: package); - ///
Calendar Weekly icon (sharp)
- static const IconData calendar_weekly_sharp = IconData(0xe055, fontFamily: familySharp, fontPackage: package); - ///
Calendar Yearly icon (sharp)
- static const IconData calendar_yearly_sharp = IconData(0xe056, fontFamily: familySharp, fontPackage: package); - ///
Call Back icon (sharp)
- static const IconData call_back_sharp = IconData(0xe057, fontFamily: familySharp, fontPackage: package); - ///
Camera icon (sharp)
- static const IconData camera_sharp = IconData(0xe058, fontFamily: familySharp, fontPackage: package); - ///
Camera Shutter icon (sharp)
- static const IconData camera_shutter_sharp = IconData(0xe059, fontFamily: familySharp, fontPackage: package); - ///
Camera Switch Image icon (sharp)
- static const IconData camera_switch_image_sharp = IconData(0xe05a, fontFamily: familySharp, fontPackage: package); - ///
Camera Switch icon (sharp)
- static const IconData camera_switch_sharp = IconData(0xe05b, fontFamily: familySharp, fontPackage: package); - ///
Cancel Outline icon (sharp)
- static const IconData cancel_outline_sharp = IconData(0xe05c, fontFamily: familySharp, fontPackage: package); - ///
Cancel icon (sharp)
- static const IconData cancel_sharp = IconData(0xe05d, fontFamily: familySharp, fontPackage: package); - ///
Car icon (sharp)
- static const IconData car_sharp = IconData(0xe05e, fontFamily: familySharp, fontPackage: package); - ///
Card Orientation icon (sharp)
- static const IconData card_orientation_sharp = IconData(0xe05f, fontFamily: familySharp, fontPackage: package); - ///
Card With Chip icon (sharp)
- static const IconData card_with_chip_sharp = IconData(0xe060, fontFamily: familySharp, fontPackage: package); - ///
Caret Down icon (sharp)
- static const IconData caret_down_sharp = IconData(0xe061, fontFamily: familySharp, fontPackage: package); - ///
Caret Left icon (sharp)
- static const IconData caret_left_sharp = IconData(0xe062, fontFamily: familySharp, fontPackage: package); - ///
Caret Right icon (sharp)
- static const IconData caret_right_sharp = IconData(0xe063, fontFamily: familySharp, fontPackage: package); - ///
Caret Sort icon (sharp)
- static const IconData caret_sort_sharp = IconData(0xe064, fontFamily: familySharp, fontPackage: package); - ///
Caret Up icon (sharp)
- static const IconData caret_up_sharp = IconData(0xe065, fontFamily: familySharp, fontPackage: package); - ///
Cast Connected icon (sharp)
- static const IconData cast_connected_sharp = IconData(0xe066, fontFamily: familySharp, fontPackage: package); - ///
Cast icon (sharp)
- static const IconData cast_sharp = IconData(0xe067, fontFamily: familySharp, fontPackage: package); - ///
Cellular Signal icon (sharp)
- static const IconData cellular_signal_sharp = IconData(0xe068, fontFamily: familySharp, fontPackage: package); - ///
Certificate icon (sharp)
- static const IconData certificate_sharp = IconData(0xe069, fontFamily: familySharp, fontPackage: package); - ///
Certified icon (sharp)
- static const IconData certified_sharp = IconData(0xe06a, fontFamily: familySharp, fontPackage: package); - ///
Chain icon (sharp)
- static const IconData chain_sharp = IconData(0xe06b, fontFamily: familySharp, fontPackage: package); - ///
Chart Bar icon (sharp)
- static const IconData chart_bar_sharp = IconData(0xe06c, fontFamily: familySharp, fontPackage: package); - ///
Chart Bubble Charts icon (sharp)
- static const IconData chart_bubble_charts_sharp = IconData(0xe06d, fontFamily: familySharp, fontPackage: package); - ///
Chart Bubble icon (sharp)
- static const IconData chart_bubble_sharp = IconData(0xe06e, fontFamily: familySharp, fontPackage: package); - ///
Chart Doughnut icon (sharp)
- static const IconData chart_doughnut_sharp = IconData(0xe06f, fontFamily: familySharp, fontPackage: package); - ///
Chart Filled Enterprise icon (sharp)
- static const IconData chart_filled_enterprise_sharp = IconData(0xe070, fontFamily: familySharp, fontPackage: package); - ///
Chart Filled icon (sharp)
- static const IconData chart_filled_sharp = IconData(0xe071, fontFamily: familySharp, fontPackage: package); - ///
Chart Gantt icon (sharp)
- static const IconData chart_gantt_sharp = IconData(0xe072, fontFamily: familySharp, fontPackage: package); - ///
Chart Line Predict icon (sharp)
- static const IconData chart_line_predict_sharp = IconData(0xe073, fontFamily: familySharp, fontPackage: package); - ///
Chart Line icon (sharp)
- static const IconData chart_line_sharp = IconData(0xe074, fontFamily: familySharp, fontPackage: package); - ///
Chart Line Stacked icon (sharp)
- static const IconData chart_line_stacked_sharp = IconData(0xe075, fontFamily: familySharp, fontPackage: package); - ///
Chart Outline icon (sharp)
- static const IconData chart_outline_sharp = IconData(0xe076, fontFamily: familySharp, fontPackage: package); - ///
Chart Pie Charts icon (sharp)
- static const IconData chart_pie_charts_sharp = IconData(0xe077, fontFamily: familySharp, fontPackage: package); - ///
Chart Pie Content icon (sharp)
- static const IconData chart_pie_content_sharp = IconData(0xe078, fontFamily: familySharp, fontPackage: package); - ///
Chart Pie icon (sharp)
- static const IconData chart_pie_sharp = IconData(0xe079, fontFamily: familySharp, fontPackage: package); - ///
Chart Scatter Plot icon (sharp)
- static const IconData chart_scatter_plot_sharp = IconData(0xe07a, fontFamily: familySharp, fontPackage: package); - ///
Chart Stacked icon (sharp)
- static const IconData chart_stacked_sharp = IconData(0xe07b, fontFamily: familySharp, fontPackage: package); - ///
Chart Waterfall icon (sharp)
- static const IconData chart_waterfall_sharp = IconData(0xe07c, fontFamily: familySharp, fontPackage: package); - ///
Chat Bot icon (sharp)
- static const IconData chat_bot_sharp = IconData(0xe07d, fontFamily: familySharp, fontPackage: package); - ///
Chat Bubble Outline icon (sharp)
- static const IconData chat_bubble_outline_sharp = IconData(0xe07e, fontFamily: familySharp, fontPackage: package); - ///
Chat Bubble icon (sharp)
- static const IconData chat_bubble_sharp = IconData(0xe07f, fontFamily: familySharp, fontPackage: package); - ///
Chat Message Read icon (sharp)
- static const IconData chat_message_read_sharp = IconData(0xe080, fontFamily: familySharp, fontPackage: package); - ///
Chat Message Unread icon (sharp)
- static const IconData chat_message_unread_sharp = IconData(0xe081, fontFamily: familySharp, fontPackage: package); - ///
Chat Search icon (sharp)
- static const IconData chat_search_sharp = IconData(0xe082, fontFamily: familySharp, fontPackage: package); - ///
Chat icon (sharp)
- static const IconData chat_sharp = IconData(0xe083, fontFamily: familySharp, fontPackage: package); - ///
Check Box Empty icon (sharp)
- static const IconData check_box_empty_sharp = IconData(0xe084, fontFamily: familySharp, fontPackage: package); - ///
Check Box icon (sharp)
- static const IconData check_box_sharp = IconData(0xe085, fontFamily: familySharp, fontPackage: package); - ///
Check Circle Outline Alt icon (sharp)
- static const IconData check_circle_outline_alt_sharp = IconData(0xe086, fontFamily: familySharp, fontPackage: package); - ///
Check Circle Outline icon (sharp)
- static const IconData check_circle_outline_sharp = IconData(0xe087, fontFamily: familySharp, fontPackage: package); - ///
Check Circle icon (sharp)
- static const IconData check_circle_sharp = IconData(0xe088, fontFamily: familySharp, fontPackage: package); - ///
Check Mark icon (sharp)
- static const IconData check_mark_sharp = IconData(0xe089, fontFamily: familySharp, fontPackage: package); - ///
Checklist icon (sharp)
- static const IconData checklist_sharp = IconData(0xe08a, fontFamily: familySharp, fontPackage: package); - ///
Chevron Left icon (sharp)
- static const IconData chevron_left_sharp = IconData(0xe08b, fontFamily: familySharp, fontPackage: package); - ///
Chevron Right icon (sharp)
- static const IconData chevron_right_sharp = IconData(0xe08c, fontFamily: familySharp, fontPackage: package); - ///
Choices icon (sharp)
- static const IconData choices_sharp = IconData(0xe08d, fontFamily: familySharp, fontPackage: package); - ///
Clipboard Action icon (sharp)
- static const IconData clipboard_action_sharp = IconData(0xe08e, fontFamily: familySharp, fontPackage: package); - ///
Clipboard icon (sharp)
- static const IconData clipboard_sharp = IconData(0xe08f, fontFamily: familySharp, fontPackage: package); - ///
Clock Available icon (sharp)
- static const IconData clock_available_sharp = IconData(0xe090, fontFamily: familySharp, fontPackage: package); - ///
Clock Bid icon (sharp)
- static const IconData clock_bid_sharp = IconData(0xe091, fontFamily: familySharp, fontPackage: package); - ///
Clock Edit icon (sharp)
- static const IconData clock_edit_sharp = IconData(0xe092, fontFamily: familySharp, fontPackage: package); - ///
Clock Flexible icon (sharp)
- static const IconData clock_flexible_sharp = IconData(0xe093, fontFamily: familySharp, fontPackage: package); - ///
Clock In Progress icon (sharp)
- static const IconData clock_in_progress_sharp = IconData(0xe094, fontFamily: familySharp, fontPackage: package); - ///
Clock Info icon (sharp)
- static const IconData clock_info_sharp = IconData(0xe095, fontFamily: familySharp, fontPackage: package); - ///
Clock Missed icon (sharp)
- static const IconData clock_missed_sharp = IconData(0xe096, fontFamily: familySharp, fontPackage: package); - ///
Clock On icon (sharp)
- static const IconData clock_on_sharp = IconData(0xe097, fontFamily: familySharp, fontPackage: package); - ///
Clock Outline icon (sharp)
- static const IconData clock_outline_sharp = IconData(0xe098, fontFamily: familySharp, fontPackage: package); - ///
Clock Rollover icon (sharp)
- static const IconData clock_rollover_sharp = IconData(0xe099, fontFamily: familySharp, fontPackage: package); - ///
Clock Segment icon (sharp)
- static const IconData clock_segment_sharp = IconData(0xe09a, fontFamily: familySharp, fontPackage: package); - ///
Clock icon (sharp)
- static const IconData clock_sharp = IconData(0xe09b, fontFamily: familySharp, fontPackage: package); - ///
Clock Start icon (sharp)
- static const IconData clock_start_sharp = IconData(0xe09c, fontFamily: familySharp, fontPackage: package); - ///
Clock Stop icon (sharp)
- static const IconData clock_stop_sharp = IconData(0xe09d, fontFamily: familySharp, fontPackage: package); - ///
Clock Switch icon (sharp)
- static const IconData clock_switch_sharp = IconData(0xe09e, fontFamily: familySharp, fontPackage: package); - ///
Clock Timer icon (sharp)
- static const IconData clock_timer_sharp = IconData(0xe09f, fontFamily: familySharp, fontPackage: package); - ///
Clock Upcoming icon (sharp)
- static const IconData clock_upcoming_sharp = IconData(0xe0a0, fontFamily: familySharp, fontPackage: package); - ///
Close icon (sharp)
- static const IconData close_sharp = IconData(0xe0a1, fontFamily: familySharp, fontPackage: package); - ///
Closed Caption icon (sharp)
- static const IconData closed_caption_sharp = IconData(0xe0a2, fontFamily: familySharp, fontPackage: package); - ///
Cloud Done icon (sharp)
- static const IconData cloud_done_sharp = IconData(0xe0a3, fontFamily: familySharp, fontPackage: package); - ///
Cloud Download icon (sharp)
- static const IconData cloud_download_sharp = IconData(0xe0a4, fontFamily: familySharp, fontPackage: package); - ///
Cloud Off icon (sharp)
- static const IconData cloud_off_sharp = IconData(0xe0a5, fontFamily: familySharp, fontPackage: package); - ///
Cloud Outline icon (sharp)
- static const IconData cloud_outline_sharp = IconData(0xe0a6, fontFamily: familySharp, fontPackage: package); - ///
Cloud icon (sharp)
- static const IconData cloud_sharp = IconData(0xe0a7, fontFamily: familySharp, fontPackage: package); - ///
Cloud Upload icon (sharp)
- static const IconData cloud_upload_sharp = IconData(0xe0a8, fontFamily: familySharp, fontPackage: package); - ///
Color Fill icon (sharp)
- static const IconData color_fill_sharp = IconData(0xe0a9, fontFamily: familySharp, fontPackage: package); - ///
Columns icon (sharp)
- static const IconData columns_sharp = IconData(0xe0aa, fontFamily: familySharp, fontPackage: package); - ///
Contactless Pay icon (sharp)
- static const IconData contactless_pay_sharp = IconData(0xe0ab, fontFamily: familySharp, fontPackage: package); - ///
Content icon (sharp)
- static const IconData content_sharp = IconData(0xe0ac, fontFamily: familySharp, fontPackage: package); - ///
Contrast Image icon (sharp)
- static const IconData contrast_image_sharp = IconData(0xe0ad, fontFamily: familySharp, fontPackage: package); - ///
Contrast icon (sharp)
- static const IconData contrast_sharp = IconData(0xe0ae, fontFamily: familySharp, fontPackage: package); - ///
Conversation icon (sharp)
- static const IconData conversation_sharp = IconData(0xe0af, fontFamily: familySharp, fontPackage: package); - ///
Copy File icon (sharp)
- static const IconData copy_file_sharp = IconData(0xe0b0, fontFamily: familySharp, fontPackage: package); - ///
Create New Folder icon (sharp)
- static const IconData create_new_folder_sharp = IconData(0xe0b1, fontFamily: familySharp, fontPackage: package); - ///
Credit Card icon (sharp)
- static const IconData credit_card_sharp = IconData(0xe0b2, fontFamily: familySharp, fontPackage: package); - ///
Credit Card Swipe icon (sharp)
- static const IconData credit_card_swipe_sharp = IconData(0xe0b3, fontFamily: familySharp, fontPackage: package); - ///
Crop icon (sharp)
- static const IconData crop_sharp = IconData(0xe0b4, fontFamily: familySharp, fontPackage: package); - ///
Dark Mode icon (sharp)
- static const IconData dark_mode_sharp = IconData(0xe0b5, fontFamily: familySharp, fontPackage: package); - ///
Dashboard icon (sharp)
- static const IconData dashboard_sharp = IconData(0xe0b6, fontFamily: familySharp, fontPackage: package); - ///
Delete Forever icon (sharp)
- static const IconData delete_forever_sharp = IconData(0xe0b7, fontFamily: familySharp, fontPackage: package); - ///
Delete Outline icon (sharp)
- static const IconData delete_outline_sharp = IconData(0xe0b8, fontFamily: familySharp, fontPackage: package); - ///
Delete icon (sharp)
- static const IconData delete_sharp = IconData(0xe0b9, fontFamily: familySharp, fontPackage: package); - ///
Desktop icon (sharp)
- static const IconData desktop_sharp = IconData(0xe0ba, fontFamily: familySharp, fontPackage: package); - ///
Device Settings icon (sharp)
- static const IconData device_settings_sharp = IconData(0xe0bb, fontFamily: familySharp, fontPackage: package); - ///
Devices Ecosystem icon (sharp)
- static const IconData devices_ecosystem_sharp = IconData(0xe0bc, fontFamily: familySharp, fontPackage: package); - ///
Devices icon (sharp)
- static const IconData devices_sharp = IconData(0xe0bd, fontFamily: familySharp, fontPackage: package); - ///
Dialpad icon (sharp)
- static const IconData dialpad_sharp = IconData(0xe0be, fontFamily: familySharp, fontPackage: package); - ///
Dislike icon (sharp)
- static const IconData dislike_sharp = IconData(0xe0bf, fontFamily: familySharp, fontPackage: package); - ///
Distribute Horizontal icon (sharp)
- static const IconData distribute_horizontal_sharp = IconData(0xe0c0, fontFamily: familySharp, fontPackage: package); - ///
Distribute Vertical icon (sharp)
- static const IconData distribute_vertical_sharp = IconData(0xe0c1, fontFamily: familySharp, fontPackage: package); - ///
Doc Attach icon (sharp)
- static const IconData doc_attach_sharp = IconData(0xe0c2, fontFamily: familySharp, fontPackage: package); - ///
Document icon (sharp)
- static const IconData document_sharp = IconData(0xe0c3, fontFamily: familySharp, fontPackage: package); - ///
Dollar icon (sharp)
- static const IconData dollar_sharp = IconData(0xe0c4, fontFamily: familySharp, fontPackage: package); - ///
Download icon (sharp)
- static const IconData download_sharp = IconData(0xe0c5, fontFamily: familySharp, fontPackage: package); - ///
Downloading icon (sharp)
- static const IconData downloading_sharp = IconData(0xe0c6, fontFamily: familySharp, fontPackage: package); - ///
Drop Down Circle icon (sharp)
- static const IconData drop_down_circle_sharp = IconData(0xe0c7, fontFamily: familySharp, fontPackage: package); - ///
Eas icon (sharp)
- static const IconData eas_sharp = IconData(0xe0c8, fontFamily: familySharp, fontPackage: package); - ///
Edit Border icon (sharp)
- static const IconData edit_border_sharp = IconData(0xe0c9, fontFamily: familySharp, fontPackage: package); - ///
Edit icon (sharp)
- static const IconData edit_sharp = IconData(0xe0ca, fontFamily: familySharp, fontPackage: package); - ///
Email Alt icon (sharp)
- static const IconData email_alt_sharp = IconData(0xe0cb, fontFamily: familySharp, fontPackage: package); - ///
Email Outline icon (sharp)
- static const IconData email_outline_sharp = IconData(0xe0cc, fontFamily: familySharp, fontPackage: package); - ///
Email Reply All icon (sharp)
- static const IconData email_reply_all_sharp = IconData(0xe0cd, fontFamily: familySharp, fontPackage: package); - ///
Email icon (sharp)
- static const IconData email_sharp = IconData(0xe0ce, fontFamily: familySharp, fontPackage: package); - ///
End Call icon (sharp)
- static const IconData end_call_sharp = IconData(0xe0cf, fontFamily: familySharp, fontPackage: package); - ///
Enterprise Diagnostics icon (sharp)
- static const IconData enterprise_diagnostics_sharp = IconData(0xe0d0, fontFamily: familySharp, fontPackage: package); - ///
Environmental icon (sharp)
- static const IconData environmental_sharp = IconData(0xe0d1, fontFamily: familySharp, fontPackage: package); - ///
Error Outline icon (sharp)
- static const IconData error_outline_sharp = IconData(0xe0d2, fontFamily: familySharp, fontPackage: package); - ///
Error icon (sharp)
- static const IconData error_sharp = IconData(0xe0d3, fontFamily: familySharp, fontPackage: package); - ///
Ethernet icon (sharp)
- static const IconData ethernet_sharp = IconData(0xe0d4, fontFamily: familySharp, fontPackage: package); - ///
Exit icon (sharp)
- static const IconData exit_sharp = IconData(0xe0d5, fontFamily: familySharp, fontPackage: package); - ///
Expand Less icon (sharp)
- static const IconData expand_less_sharp = IconData(0xe0d6, fontFamily: familySharp, fontPackage: package); - ///
Expand More icon (sharp)
- static const IconData expand_more_sharp = IconData(0xe0d7, fontFamily: familySharp, fontPackage: package); - ///
Eye Dropper icon (sharp)
- static const IconData eye_dropper_sharp = IconData(0xe0d8, fontFamily: familySharp, fontPackage: package); - ///
Eye Preview icon (sharp)
- static const IconData eye_preview_sharp = IconData(0xe0d9, fontFamily: familySharp, fontPackage: package); - ///
Face Id icon (sharp)
- static const IconData face_id_sharp = IconData(0xe0da, fontFamily: familySharp, fontPackage: package); - ///
Facebook icon (sharp)
- static const IconData facebook_sharp = IconData(0xe0db, fontFamily: familySharp, fontPackage: package); - ///
Factory icon (sharp)
- static const IconData factory_sharp = IconData(0xe0dc, fontFamily: familySharp, fontPackage: package); - ///
Fast Forward icon (sharp)
- static const IconData fast_forward_sharp = IconData(0xe0dd, fontFamily: familySharp, fontPackage: package); - ///
Fast Rewind icon (sharp)
- static const IconData fast_rewind_sharp = IconData(0xe0de, fontFamily: familySharp, fontPackage: package); - ///
File icon (sharp)
- static const IconData file_sharp = IconData(0xe0df, fontFamily: familySharp, fontPackage: package); - ///
Filter Alt icon (sharp)
- static const IconData filter_alt_sharp = IconData(0xe0e0, fontFamily: familySharp, fontPackage: package); - ///
Filter icon (sharp)
- static const IconData filter_sharp = IconData(0xe0e1, fontFamily: familySharp, fontPackage: package); - ///
Finished Download icon (sharp)
- static const IconData finished_download_sharp = IconData(0xe0e2, fontFamily: familySharp, fontPackage: package); - ///
First Page icon (sharp)
- static const IconData first_page_sharp = IconData(0xe0e3, fontFamily: familySharp, fontPackage: package); - ///
Flag icon (sharp)
- static const IconData flag_sharp = IconData(0xe0e4, fontFamily: familySharp, fontPackage: package); - ///
Flight Mode icon (sharp)
- static const IconData flight_mode_sharp = IconData(0xe0e5, fontFamily: familySharp, fontPackage: package); - ///
Flight icon (sharp)
- static const IconData flight_sharp = IconData(0xe0e6, fontFamily: familySharp, fontPackage: package); - ///
Flip icon (sharp)
- static const IconData flip_sharp = IconData(0xe0e7, fontFamily: familySharp, fontPackage: package); - ///
Folder File icon (sharp)
- static const IconData folder_file_sharp = IconData(0xe0e8, fontFamily: familySharp, fontPackage: package); - ///
Folder Outline icon (sharp)
- static const IconData folder_outline_sharp = IconData(0xe0e9, fontFamily: familySharp, fontPackage: package); - ///
Folder icon (sharp)
- static const IconData folder_sharp = IconData(0xe0ea, fontFamily: familySharp, fontPackage: package); - ///
Font Size Decrease icon (sharp)
- static const IconData font_size_decrease_sharp = IconData(0xe0eb, fontFamily: familySharp, fontPackage: package); - ///
Font Size Increase icon (sharp)
- static const IconData font_size_increase_sharp = IconData(0xe0ec, fontFamily: familySharp, fontPackage: package); - ///
Format Shapes icon (sharp)
- static const IconData format_shapes_sharp = IconData(0xe0ed, fontFamily: familySharp, fontPackage: package); - ///
Forward icon (sharp)
- static const IconData forward_sharp = IconData(0xe0ee, fontFamily: familySharp, fontPackage: package); - ///
Freezer icon (sharp)
- static const IconData freezer_sharp = IconData(0xe0ef, fontFamily: familySharp, fontPackage: package); - ///
Full Screen Exit icon (sharp)
- static const IconData full_screen_exit_sharp = IconData(0xe0f0, fontFamily: familySharp, fontPackage: package); - ///
Full Screen icon (sharp)
- static const IconData full_screen_sharp = IconData(0xe0f1, fontFamily: familySharp, fontPackage: package); - ///
Gif icon (sharp)
- static const IconData gif_sharp = IconData(0xe0f2, fontFamily: familySharp, fontPackage: package); - ///
Glossary icon (sharp)
- static const IconData glossary_sharp = IconData(0xe0f3, fontFamily: familySharp, fontPackage: package); - ///
Grid Off icon (sharp)
- static const IconData grid_off_sharp = IconData(0xe0f4, fontFamily: familySharp, fontPackage: package); - ///
Grid On icon (sharp)
- static const IconData grid_on_sharp = IconData(0xe0f5, fontFamily: familySharp, fontPackage: package); - ///
Grid View icon (sharp)
- static const IconData grid_view_sharp = IconData(0xe0f6, fontFamily: familySharp, fontPackage: package); - ///
Group icon (sharp)
- static const IconData group_sharp = IconData(0xe0f7, fontFamily: familySharp, fontPackage: package); - ///
Groups icon (sharp)
- static const IconData groups_sharp = IconData(0xe0f8, fontFamily: familySharp, fontPackage: package); - ///
Hamburger Menu Navigation Rail icon (sharp)
- static const IconData hamburger_menu_navigation_rail_sharp = IconData(0xe0f9, fontFamily: familySharp, fontPackage: package); - ///
Hamburger Menu icon (sharp)
- static const IconData hamburger_menu_sharp = IconData(0xe0fa, fontFamily: familySharp, fontPackage: package); - ///
Hamburger Menu Thick icon (sharp)
- static const IconData hamburger_menu_thick_sharp = IconData(0xe0fb, fontFamily: familySharp, fontPackage: package); - ///
Hand icon (sharp)
- static const IconData hand_sharp = IconData(0xe0fc, fontFamily: familySharp, fontPackage: package); - ///
Happy icon (sharp)
- static const IconData happy_sharp = IconData(0xe0fd, fontFamily: familySharp, fontPackage: package); - ///
Hdmi icon (sharp)
- static const IconData hdmi_sharp = IconData(0xe0fe, fontFamily: familySharp, fontPackage: package); - ///
Hdr icon (sharp)
- static const IconData hdr_sharp = IconData(0xe0ff, fontFamily: familySharp, fontPackage: package); - ///
Headphones icon (sharp)
- static const IconData headphones_sharp = IconData(0xe100, fontFamily: familySharp, fontPackage: package); - ///
Headset icon (sharp)
- static const IconData headset_sharp = IconData(0xe101, fontFamily: familySharp, fontPackage: package); - ///
Help Outline icon (sharp)
- static const IconData help_outline_sharp = IconData(0xe102, fontFamily: familySharp, fontPackage: package); - ///
Help icon (sharp)
- static const IconData help_sharp = IconData(0xe103, fontFamily: familySharp, fontPackage: package); - ///
History icon (sharp)
- static const IconData history_sharp = IconData(0xe104, fontFamily: familySharp, fontPackage: package); - ///
Home icon (sharp)
- static const IconData home_sharp = IconData(0xe105, fontFamily: familySharp, fontPackage: package); - ///
Hourglass icon (sharp)
- static const IconData hourglass_sharp = IconData(0xe106, fontFamily: familySharp, fontPackage: package); - ///
How Do I icon (sharp)
- static const IconData how_do_i_sharp = IconData(0xe107, fontFamily: familySharp, fontPackage: package); - ///
Image Library icon (sharp)
- static const IconData image_library_sharp = IconData(0xe108, fontFamily: familySharp, fontPackage: package); - ///
Image icon (sharp)
- static const IconData image_sharp = IconData(0xe109, fontFamily: familySharp, fontPackage: package); - ///
Important Notification icon (sharp)
- static const IconData important_notification_sharp = IconData(0xe10a, fontFamily: familySharp, fontPackage: package); - ///
Inbox icon (sharp)
- static const IconData inbox_sharp = IconData(0xe10b, fontFamily: familySharp, fontPackage: package); - ///
Indent Decrease icon (sharp)
- static const IconData indent_decrease_sharp = IconData(0xe10c, fontFamily: familySharp, fontPackage: package); - ///
Indent Increase icon (sharp)
- static const IconData indent_increase_sharp = IconData(0xe10d, fontFamily: familySharp, fontPackage: package); - ///
Indeterminate Check Box icon (sharp)
- static const IconData indeterminate_check_box_sharp = IconData(0xe10e, fontFamily: familySharp, fontPackage: package); - ///
Info icon (sharp)
- static const IconData info_sharp = IconData(0xe10f, fontFamily: familySharp, fontPackage: package); - ///
Instagram icon (sharp)
- static const IconData instagram_sharp = IconData(0xe110, fontFamily: familySharp, fontPackage: package); - ///
Ios Share icon (sharp)
- static const IconData ios_share_sharp = IconData(0xe111, fontFamily: familySharp, fontPackage: package); - ///
Iso icon (sharp)
- static const IconData iso_sharp = IconData(0xe112, fontFamily: familySharp, fontPackage: package); - ///
Issue Audit icon (sharp)
- static const IconData issue_audit_sharp = IconData(0xe113, fontFamily: familySharp, fontPackage: package); - ///
Italic icon (sharp)
- static const IconData italic_sharp = IconData(0xe114, fontFamily: familySharp, fontPackage: package); - ///
Jpg Attach icon (sharp)
- static const IconData jpg_attach_sharp = IconData(0xe115, fontFamily: familySharp, fontPackage: package); - ///
Justify icon (sharp)
- static const IconData justify_sharp = IconData(0xe116, fontFamily: familySharp, fontPackage: package); - ///
Keyboard icon (sharp)
- static const IconData keyboard_sharp = IconData(0xe117, fontFamily: familySharp, fontPackage: package); - ///
Label icon (sharp)
- static const IconData label_sharp = IconData(0xe118, fontFamily: familySharp, fontPackage: package); - ///
Laptop icon (sharp)
- static const IconData laptop_sharp = IconData(0xe119, fontFamily: familySharp, fontPackage: package); - ///
Last Page icon (sharp)
- static const IconData last_page_sharp = IconData(0xe11a, fontFamily: familySharp, fontPackage: package); - ///
Layers icon (sharp)
- static const IconData layers_sharp = IconData(0xe11b, fontFamily: familySharp, fontPackage: package); - ///
Light Mode icon (sharp)
- static const IconData light_mode_sharp = IconData(0xe11c, fontFamily: familySharp, fontPackage: package); - ///
Light Rail Train icon (sharp)
- static const IconData light_rail_train_sharp = IconData(0xe11d, fontFamily: familySharp, fontPackage: package); - ///
Lightbulb icon (sharp)
- static const IconData lightbulb_sharp = IconData(0xe11e, fontFamily: familySharp, fontPackage: package); - ///
Like icon (sharp)
- static const IconData like_sharp = IconData(0xe11f, fontFamily: familySharp, fontPackage: package); - ///
Line Spacing icon (sharp)
- static const IconData line_spacing_sharp = IconData(0xe120, fontFamily: familySharp, fontPackage: package); - ///
Link Add icon (sharp)
- static const IconData link_add_sharp = IconData(0xe121, fontFamily: familySharp, fontPackage: package); - ///
Link icon (sharp)
- static const IconData link_sharp = IconData(0xe122, fontFamily: familySharp, fontPackage: package); - ///
Linkedin icon (sharp)
- static const IconData linkedin_sharp = IconData(0xe123, fontFamily: familySharp, fontPackage: package); - ///
List Alt icon (sharp)
- static const IconData list_alt_sharp = IconData(0xe124, fontFamily: familySharp, fontPackage: package); - ///
List Bullet Contained icon (sharp)
- static const IconData list_bullet_contained_sharp = IconData(0xe125, fontFamily: familySharp, fontPackage: package); - ///
List Feedback icon (sharp)
- static const IconData list_feedback_sharp = IconData(0xe126, fontFamily: familySharp, fontPackage: package); - ///
List Form icon (sharp)
- static const IconData list_form_sharp = IconData(0xe127, fontFamily: familySharp, fontPackage: package); - ///
List icon (sharp)
- static const IconData list_sharp = IconData(0xe128, fontFamily: familySharp, fontPackage: package); - ///
Local Shipping icon (sharp)
- static const IconData local_shipping_sharp = IconData(0xe129, fontFamily: familySharp, fontPackage: package); - ///
Location Off icon (sharp)
- static const IconData location_off_sharp = IconData(0xe12a, fontFamily: familySharp, fontPackage: package); - ///
Location Point icon (sharp)
- static const IconData location_point_sharp = IconData(0xe12b, fontFamily: familySharp, fontPackage: package); - ///
Location icon (sharp)
- static const IconData location_sharp = IconData(0xe12c, fontFamily: familySharp, fontPackage: package); - ///
Lock Alt icon (sharp)
- static const IconData lock_alt_sharp = IconData(0xe12d, fontFamily: familySharp, fontPackage: package); - ///
Lock icon (sharp)
- static const IconData lock_sharp = IconData(0xe12e, fontFamily: familySharp, fontPackage: package); - ///
Lock Undo icon (sharp)
- static const IconData lock_undo_sharp = IconData(0xe12f, fontFamily: familySharp, fontPackage: package); - ///
Log In icon (sharp)
- static const IconData log_in_sharp = IconData(0xe130, fontFamily: familySharp, fontPackage: package); - ///
Log Out icon (sharp)
- static const IconData log_out_sharp = IconData(0xe131, fontFamily: familySharp, fontPackage: package); - ///
Love Outline icon (sharp)
- static const IconData love_outline_sharp = IconData(0xe132, fontFamily: familySharp, fontPackage: package); - ///
Love icon (sharp)
- static const IconData love_sharp = IconData(0xe133, fontFamily: familySharp, fontPackage: package); - ///
Maintenance icon (sharp)
- static const IconData maintenance_sharp = IconData(0xe134, fontFamily: familySharp, fontPackage: package); - ///
Map icon (sharp)
- static const IconData map_sharp = IconData(0xe135, fontFamily: familySharp, fontPackage: package); - ///
Meal icon (sharp)
- static const IconData meal_sharp = IconData(0xe136, fontFamily: familySharp, fontPackage: package); - ///
Medium icon (sharp)
- static const IconData medium_sharp = IconData(0xe137, fontFamily: familySharp, fontPackage: package); - ///
Memory icon (sharp)
- static const IconData memory_sharp = IconData(0xe138, fontFamily: familySharp, fontPackage: package); - ///
Message icon (sharp)
- static const IconData message_sharp = IconData(0xe139, fontFamily: familySharp, fontPackage: package); - ///
Microphone Off icon (sharp)
- static const IconData microphone_off_sharp = IconData(0xe13a, fontFamily: familySharp, fontPackage: package); - ///
Microphone Outline icon (sharp)
- static const IconData microphone_outline_sharp = IconData(0xe13b, fontFamily: familySharp, fontPackage: package); - ///
Microphone icon (sharp)
- static const IconData microphone_sharp = IconData(0xe13c, fontFamily: familySharp, fontPackage: package); - ///
Mobile Friendly icon (sharp)
- static const IconData mobile_friendly_sharp = IconData(0xe13d, fontFamily: familySharp, fontPackage: package); - ///
Money Euro icon (sharp)
- static const IconData money_euro_sharp = IconData(0xe13e, fontFamily: familySharp, fontPackage: package); - ///
Money Pound icon (sharp)
- static const IconData money_pound_sharp = IconData(0xe13f, fontFamily: familySharp, fontPackage: package); - ///
Money Usd icon (sharp)
- static const IconData money_usd_sharp = IconData(0xe140, fontFamily: familySharp, fontPackage: package); - ///
Monitor icon (sharp)
- static const IconData monitor_sharp = IconData(0xe141, fontFamily: familySharp, fontPackage: package); - ///
More Horizontal icon (sharp)
- static const IconData more_horizontal_sharp = IconData(0xe142, fontFamily: familySharp, fontPackage: package); - ///
More Vertical icon (sharp)
- static const IconData more_vertical_sharp = IconData(0xe143, fontFamily: familySharp, fontPackage: package); - ///
My Location icon (sharp)
- static const IconData my_location_sharp = IconData(0xe144, fontFamily: familySharp, fontPackage: package); - ///
Navigate icon (sharp)
- static const IconData navigate_sharp = IconData(0xe145, fontFamily: familySharp, fontPackage: package); - ///
Navigation icon (sharp)
- static const IconData navigation_sharp = IconData(0xe146, fontFamily: familySharp, fontPackage: package); - ///
Near Me icon (sharp)
- static const IconData near_me_sharp = IconData(0xe147, fontFamily: familySharp, fontPackage: package); - ///
Network Signal icon (sharp)
- static const IconData network_signal_sharp = IconData(0xe148, fontFamily: familySharp, fontPackage: package); - ///
New Chat icon (sharp)
- static const IconData new_chat_sharp = IconData(0xe149, fontFamily: familySharp, fontPackage: package); - ///
Nfc icon (sharp)
- static const IconData nfc_sharp = IconData(0xe14a, fontFamily: familySharp, fontPackage: package); - ///
Night icon (sharp)
- static const IconData night_sharp = IconData(0xe14b, fontFamily: familySharp, fontPackage: package); - ///
No Color icon (sharp)
- static const IconData no_color_sharp = IconData(0xe14c, fontFamily: familySharp, fontPackage: package); - ///
Note icon (sharp)
- static const IconData note_sharp = IconData(0xe14d, fontFamily: familySharp, fontPackage: package); - ///
Notifications Off icon (sharp)
- static const IconData notifications_off_sharp = IconData(0xe14e, fontFamily: familySharp, fontPackage: package); - ///
Numbered List icon (sharp)
- static const IconData numbered_list_sharp = IconData(0xe14f, fontFamily: familySharp, fontPackage: package); - ///
Open In Full icon (sharp)
- static const IconData open_in_full_sharp = IconData(0xe150, fontFamily: familySharp, fontPackage: package); - ///
Open In New Window icon (sharp)
- static const IconData open_in_new_window_sharp = IconData(0xe151, fontFamily: familySharp, fontPackage: package); - ///
Open New Off icon (sharp)
- static const IconData open_new_off_sharp = IconData(0xe152, fontFamily: familySharp, fontPackage: package); - ///
Page Height icon (sharp)
- static const IconData page_height_sharp = IconData(0xe153, fontFamily: familySharp, fontPackage: package); - ///
Page Rotate icon (sharp)
- static const IconData page_rotate_sharp = IconData(0xe154, fontFamily: familySharp, fontPackage: package); - ///
Page Width icon (sharp)
- static const IconData page_width_sharp = IconData(0xe155, fontFamily: familySharp, fontPackage: package); - ///
Palette icon (sharp)
- static const IconData palette_sharp = IconData(0xe156, fontFamily: familySharp, fontPackage: package); - ///
Partner icon (sharp)
- static const IconData partner_sharp = IconData(0xe157, fontFamily: familySharp, fontPackage: package); - ///
Pause Circle icon (sharp)
- static const IconData pause_circle_sharp = IconData(0xe158, fontFamily: familySharp, fontPackage: package); - ///
Pause icon (sharp)
- static const IconData pause_sharp = IconData(0xe159, fontFamily: familySharp, fontPackage: package); - ///
Pdf Attach icon (sharp)
- static const IconData pdf_attach_sharp = IconData(0xe15a, fontFamily: familySharp, fontPackage: package); - ///
Pending icon (sharp)
- static const IconData pending_sharp = IconData(0xe15b, fontFamily: familySharp, fontPackage: package); - ///
Person Admin icon (sharp)
- static const IconData person_admin_sharp = IconData(0xe15c, fontFamily: familySharp, fontPackage: package); - ///
Person Assign icon (sharp)
- static const IconData person_assign_sharp = IconData(0xe15d, fontFamily: familySharp, fontPackage: package); - ///
Person Clock icon (sharp)
- static const IconData person_clock_sharp = IconData(0xe15e, fontFamily: familySharp, fontPackage: package); - ///
Person Info icon (sharp)
- static const IconData person_info_sharp = IconData(0xe15f, fontFamily: familySharp, fontPackage: package); - ///
Person Manager icon (sharp)
- static const IconData person_manager_sharp = IconData(0xe160, fontFamily: familySharp, fontPackage: package); - ///
Person Move icon (sharp)
- static const IconData person_move_sharp = IconData(0xe161, fontFamily: familySharp, fontPackage: package); - ///
Person Outline icon (sharp)
- static const IconData person_outline_sharp = IconData(0xe162, fontFamily: familySharp, fontPackage: package); - ///
Person Search icon (sharp)
- static const IconData person_search_sharp = IconData(0xe163, fontFamily: familySharp, fontPackage: package); - ///
Person icon (sharp)
- static const IconData person_sharp = IconData(0xe164, fontFamily: familySharp, fontPackage: package); - ///
Person Swap icon (sharp)
- static const IconData person_swap_sharp = IconData(0xe165, fontFamily: familySharp, fontPackage: package); - ///
Person Walk icon (sharp)
- static const IconData person_walk_sharp = IconData(0xe166, fontFamily: familySharp, fontPackage: package); - ///
Phone Android icon (sharp)
- static const IconData phone_android_sharp = IconData(0xe167, fontFamily: familySharp, fontPackage: package); - ///
Phone Bluetooth Speaker icon (sharp)
- static const IconData phone_bluetooth_speaker_sharp = IconData(0xe168, fontFamily: familySharp, fontPackage: package); - ///
Phone In Talk icon (sharp)
- static const IconData phone_in_talk_sharp = IconData(0xe169, fontFamily: familySharp, fontPackage: package); - ///
Phone Iphone icon (sharp)
- static const IconData phone_iphone_sharp = IconData(0xe16a, fontFamily: familySharp, fontPackage: package); - ///
Phone icon (sharp)
- static const IconData phone_sharp = IconData(0xe16b, fontFamily: familySharp, fontPackage: package); - ///
Phonelink icon (sharp)
- static const IconData phonelink_sharp = IconData(0xe16c, fontFamily: familySharp, fontPackage: package); - ///
Phrase icon (sharp)
- static const IconData phrase_sharp = IconData(0xe16d, fontFamily: familySharp, fontPackage: package); - ///
Pin icon (sharp)
- static const IconData pin_sharp = IconData(0xe16e, fontFamily: familySharp, fontPackage: package); - ///
Place icon (sharp)
- static const IconData place_sharp = IconData(0xe16f, fontFamily: familySharp, fontPackage: package); - ///
Planogram icon (sharp)
- static const IconData planogram_sharp = IconData(0xe170, fontFamily: familySharp, fontPackage: package); - ///
Play Circle icon (sharp)
- static const IconData play_circle_sharp = IconData(0xe171, fontFamily: familySharp, fontPackage: package); - ///
Play Outline icon (sharp)
- static const IconData play_outline_sharp = IconData(0xe172, fontFamily: familySharp, fontPackage: package); - ///
Play icon (sharp)
- static const IconData play_sharp = IconData(0xe173, fontFamily: familySharp, fontPackage: package); - ///
Png Attach icon (sharp)
- static const IconData png_attach_sharp = IconData(0xe174, fontFamily: familySharp, fontPackage: package); - ///
Point Gift icon (sharp)
- static const IconData point_gift_sharp = IconData(0xe175, fontFamily: familySharp, fontPackage: package); - ///
Point Heart icon (sharp)
- static const IconData point_heart_sharp = IconData(0xe176, fontFamily: familySharp, fontPackage: package); - ///
Point Money icon (sharp)
- static const IconData point_money_sharp = IconData(0xe177, fontFamily: familySharp, fontPackage: package); - ///
Point Star icon (sharp)
- static const IconData point_star_sharp = IconData(0xe178, fontFamily: familySharp, fontPackage: package); - ///
Point Token icon (sharp)
- static const IconData point_token_sharp = IconData(0xe179, fontFamily: familySharp, fontPackage: package); - ///
Portrait icon (sharp)
- static const IconData portrait_sharp = IconData(0xe17a, fontFamily: familySharp, fontPackage: package); - ///
Ppt Attach icon (sharp)
- static const IconData ppt_attach_sharp = IconData(0xe17b, fontFamily: familySharp, fontPackage: package); - ///
Price icon (sharp)
- static const IconData price_sharp = IconData(0xe17c, fontFamily: familySharp, fontPackage: package); - ///
Printer icon (sharp)
- static const IconData printer_sharp = IconData(0xe17d, fontFamily: familySharp, fontPackage: package); - ///
Priority icon (sharp)
- static const IconData priority_sharp = IconData(0xe17e, fontFamily: familySharp, fontPackage: package); - ///
Pro icon (sharp)
- static const IconData pro_sharp = IconData(0xe17f, fontFamily: familySharp, fontPackage: package); - ///
Productivity Apps icon (sharp)
- static const IconData productivity_apps_sharp = IconData(0xe180, fontFamily: familySharp, fontPackage: package); - ///
Ptt icon (sharp)
- static const IconData ptt_sharp = IconData(0xe181, fontFamily: familySharp, fontPackage: package); - ///
Publish icon (sharp)
- static const IconData publish_sharp = IconData(0xe182, fontFamily: familySharp, fontPackage: package); - ///
Push Pin icon (sharp)
- static const IconData push_pin_sharp = IconData(0xe183, fontFamily: familySharp, fontPackage: package); - ///
Qr Code icon (sharp)
- static const IconData qr_code_sharp = IconData(0xe184, fontFamily: familySharp, fontPackage: package); - ///
Queue icon (sharp)
- static const IconData queue_sharp = IconData(0xe185, fontFamily: familySharp, fontPackage: package); - ///
Radio Button Checked icon (sharp)
- static const IconData radio_button_checked_sharp = IconData(0xe186, fontFamily: familySharp, fontPackage: package); - ///
Radio Button Unchecked icon (sharp)
- static const IconData radio_button_unchecked_sharp = IconData(0xe187, fontFamily: familySharp, fontPackage: package); - ///
React Add icon (sharp)
- static const IconData react_add_sharp = IconData(0xe188, fontFamily: familySharp, fontPackage: package); - ///
React Thumbsup icon (sharp)
- static const IconData react_thumbsup_sharp = IconData(0xe189, fontFamily: familySharp, fontPackage: package); - ///
Recall icon (sharp)
- static const IconData recall_sharp = IconData(0xe18a, fontFamily: familySharp, fontPackage: package); - ///
Receipt icon (sharp)
- static const IconData receipt_sharp = IconData(0xe18b, fontFamily: familySharp, fontPackage: package); - ///
Recording icon (sharp)
- static const IconData recording_sharp = IconData(0xe18c, fontFamily: familySharp, fontPackage: package); - ///
Redo icon (sharp)
- static const IconData redo_sharp = IconData(0xe18d, fontFamily: familySharp, fontPackage: package); - ///
Refresh icon (sharp)
- static const IconData refresh_sharp = IconData(0xe18e, fontFamily: familySharp, fontPackage: package); - ///
Remove Box icon (sharp)
- static const IconData remove_box_sharp = IconData(0xe18f, fontFamily: familySharp, fontPackage: package); - ///
Remove Circle Outline icon (sharp)
- static const IconData remove_circle_outline_sharp = IconData(0xe190, fontFamily: familySharp, fontPackage: package); - ///
Remove Circle icon (sharp)
- static const IconData remove_circle_sharp = IconData(0xe191, fontFamily: familySharp, fontPackage: package); - ///
Remove Group icon (sharp)
- static const IconData remove_group_sharp = IconData(0xe192, fontFamily: familySharp, fontPackage: package); - ///
Remove Person icon (sharp)
- static const IconData remove_person_sharp = IconData(0xe193, fontFamily: familySharp, fontPackage: package); - ///
Remove icon (sharp)
- static const IconData remove_sharp = IconData(0xe194, fontFamily: familySharp, fontPackage: package); - ///
Renew icon (sharp)
- static const IconData renew_sharp = IconData(0xe195, fontFamily: familySharp, fontPackage: package); - ///
Reorder icon (sharp)
- static const IconData reorder_sharp = IconData(0xe196, fontFamily: familySharp, fontPackage: package); - ///
Repeat icon (sharp)
- static const IconData repeat_sharp = IconData(0xe197, fontFamily: familySharp, fontPackage: package); - ///
Replay icon (sharp)
- static const IconData replay_sharp = IconData(0xe198, fontFamily: familySharp, fontPackage: package); - ///
Reply icon (sharp)
- static const IconData reply_sharp = IconData(0xe199, fontFamily: familySharp, fontPackage: package); - ///
Report icon (sharp)
- static const IconData report_sharp = IconData(0xe19a, fontFamily: familySharp, fontPackage: package); - ///
Restart Alt icon (sharp)
- static const IconData restart_alt_sharp = IconData(0xe19b, fontFamily: familySharp, fontPackage: package); - ///
Review icon (sharp)
- static const IconData review_sharp = IconData(0xe19c, fontFamily: familySharp, fontPackage: package); - ///
Road Map icon (sharp)
- static const IconData road_map_sharp = IconData(0xe19d, fontFamily: familySharp, fontPackage: package); - ///
Rotate Left icon (sharp)
- static const IconData rotate_left_sharp = IconData(0xe19e, fontFamily: familySharp, fontPackage: package); - ///
Rotate Right icon (sharp)
- static const IconData rotate_right_sharp = IconData(0xe19f, fontFamily: familySharp, fontPackage: package); - ///
Rss Feed icon (sharp)
- static const IconData rss_feed_sharp = IconData(0xe1a0, fontFamily: familySharp, fontPackage: package); - ///
Rules icon (sharp)
- static const IconData rules_sharp = IconData(0xe1a1, fontFamily: familySharp, fontPackage: package); - ///
Sad icon (sharp)
- static const IconData sad_sharp = IconData(0xe1a2, fontFamily: familySharp, fontPackage: package); - ///
Satisfied icon (sharp)
- static const IconData satisfied_sharp = IconData(0xe1a3, fontFamily: familySharp, fontPackage: package); - ///
Save Alt icon (sharp)
- static const IconData save_alt_sharp = IconData(0xe1a4, fontFamily: familySharp, fontPackage: package); - ///
Save Content icon (sharp)
- static const IconData save_content_sharp = IconData(0xe1a5, fontFamily: familySharp, fontPackage: package); - ///
Save icon (sharp)
- static const IconData save_sharp = IconData(0xe1a6, fontFamily: familySharp, fontPackage: package); - ///
Scan Rate icon (sharp)
- static const IconData scan_rate_sharp = IconData(0xe1a7, fontFamily: familySharp, fontPackage: package); - ///
Scanner icon (sharp)
- static const IconData scanner_sharp = IconData(0xe1a8, fontFamily: familySharp, fontPackage: package); - ///
Schedule icon (sharp)
- static const IconData schedule_sharp = IconData(0xe1a9, fontFamily: familySharp, fontPackage: package); - ///
School icon (sharp)
- static const IconData school_sharp = IconData(0xe1aa, fontFamily: familySharp, fontPackage: package); - ///
Screen Rotation icon (sharp)
- static const IconData screen_rotation_sharp = IconData(0xe1ab, fontFamily: familySharp, fontPackage: package); - ///
Sd Card icon (sharp)
- static const IconData sd_card_sharp = IconData(0xe1ac, fontFamily: familySharp, fontPackage: package); - ///
Search icon (sharp)
- static const IconData search_sharp = IconData(0xe1ad, fontFamily: familySharp, fontPackage: package); - ///
Security Check icon (sharp)
- static const IconData security_check_sharp = IconData(0xe1ae, fontFamily: familySharp, fontPackage: package); - ///
Security icon (sharp)
- static const IconData security_sharp = IconData(0xe1af, fontFamily: familySharp, fontPackage: package); - ///
Send icon (sharp)
- static const IconData send_sharp = IconData(0xe1b0, fontFamily: familySharp, fontPackage: package); - ///
Settings icon (sharp)
- static const IconData settings_sharp = IconData(0xe1b1, fontFamily: familySharp, fontPackage: package); - ///
Shape Recognition icon (sharp)
- static const IconData shape_recognition_sharp = IconData(0xe1b2, fontFamily: familySharp, fontPackage: package); - ///
Share icon (sharp)
- static const IconData share_sharp = IconData(0xe1b3, fontFamily: familySharp, fontPackage: package); - ///
Shared Folder icon (sharp)
- static const IconData shared_folder_sharp = IconData(0xe1b4, fontFamily: familySharp, fontPackage: package); - ///
Ship icon (sharp)
- static const IconData ship_sharp = IconData(0xe1b5, fontFamily: familySharp, fontPackage: package); - ///
Sim Card icon (sharp)
- static const IconData sim_card_sharp = IconData(0xe1b6, fontFamily: familySharp, fontPackage: package); - ///
Skip Next icon (sharp)
- static const IconData skip_next_sharp = IconData(0xe1b7, fontFamily: familySharp, fontPackage: package); - ///
Skip Previous icon (sharp)
- static const IconData skip_previous_sharp = IconData(0xe1b8, fontFamily: familySharp, fontPackage: package); - ///
Slide Show icon (sharp)
- static const IconData slide_show_sharp = IconData(0xe1b9, fontFamily: familySharp, fontPackage: package); - ///
Smart Phone icon (sharp)
- static const IconData smart_phone_sharp = IconData(0xe1ba, fontFamily: familySharp, fontPackage: package); - ///
Sms icon (sharp)
- static const IconData sms_sharp = IconData(0xe1bb, fontFamily: familySharp, fontPackage: package); - ///
Snooze icon (sharp)
- static const IconData snooze_sharp = IconData(0xe1bc, fontFamily: familySharp, fontPackage: package); - ///
Solutions icon (sharp)
- static const IconData solutions_sharp = IconData(0xe1bd, fontFamily: familySharp, fontPackage: package); - ///
Sort Content icon (sharp)
- static const IconData sort_content_sharp = IconData(0xe1be, fontFamily: familySharp, fontPackage: package); - ///
Sort icon (sharp)
- static const IconData sort_sharp = IconData(0xe1bf, fontFamily: familySharp, fontPackage: package); - ///
Speaker icon (sharp)
- static const IconData speaker_sharp = IconData(0xe1c0, fontFamily: familySharp, fontPackage: package); - ///
Star Half icon (sharp)
- static const IconData star_half_sharp = IconData(0xe1c1, fontFamily: familySharp, fontPackage: package); - ///
Star Outline icon (sharp)
- static const IconData star_outline_sharp = IconData(0xe1c2, fontFamily: familySharp, fontPackage: package); - ///
Star icon (sharp)
- static const IconData star_sharp = IconData(0xe1c3, fontFamily: familySharp, fontPackage: package); - ///
Steps icon (sharp)
- static const IconData steps_sharp = IconData(0xe1c4, fontFamily: familySharp, fontPackage: package); - ///
Sticker icon (sharp)
- static const IconData sticker_sharp = IconData(0xe1c5, fontFamily: familySharp, fontPackage: package); - ///
Stop Circle icon (sharp)
- static const IconData stop_circle_sharp = IconData(0xe1c6, fontFamily: familySharp, fontPackage: package); - ///
Stop icon (sharp)
- static const IconData stop_sharp = IconData(0xe1c7, fontFamily: familySharp, fontPackage: package); - ///
Store Release icon (sharp)
- static const IconData store_release_sharp = IconData(0xe1c8, fontFamily: familySharp, fontPackage: package); - ///
Store icon (sharp)
- static const IconData store_sharp = IconData(0xe1c9, fontFamily: familySharp, fontPackage: package); - ///
Store Swap icon (sharp)
- static const IconData store_swap_sharp = IconData(0xe1ca, fontFamily: familySharp, fontPackage: package); - ///
Store Transfer icon (sharp)
- static const IconData store_transfer_sharp = IconData(0xe1cb, fontFamily: familySharp, fontPackage: package); - ///
Straighten icon (sharp)
- static const IconData straighten_sharp = IconData(0xe1cc, fontFamily: familySharp, fontPackage: package); - ///
Strategy icon (sharp)
- static const IconData strategy_sharp = IconData(0xe1cd, fontFamily: familySharp, fontPackage: package); - ///
Strikethrough icon (sharp)
- static const IconData strikethrough_sharp = IconData(0xe1ce, fontFamily: familySharp, fontPackage: package); - ///
Subscribe icon (sharp)
- static const IconData subscribe_sharp = IconData(0xe1cf, fontFamily: familySharp, fontPackage: package); - ///
Swap icon (sharp)
- static const IconData swap_sharp = IconData(0xe1d0, fontFamily: familySharp, fontPackage: package); - ///
Switch User icon (sharp)
- static const IconData switch_user_sharp = IconData(0xe1d1, fontFamily: familySharp, fontPackage: package); - ///
Sync Action icon (sharp)
- static const IconData sync_action_sharp = IconData(0xe1d2, fontFamily: familySharp, fontPackage: package); - ///
Sync Disabled icon (sharp)
- static const IconData sync_disabled_sharp = IconData(0xe1d3, fontFamily: familySharp, fontPackage: package); - ///
Sync icon (sharp)
- static const IconData sync_sharp = IconData(0xe1d4, fontFamily: familySharp, fontPackage: package); - ///
Table icon (sharp)
- static const IconData table_sharp = IconData(0xe1d5, fontFamily: familySharp, fontPackage: package); - ///
Tablet Mac icon (sharp)
- static const IconData tablet_mac_sharp = IconData(0xe1d6, fontFamily: familySharp, fontPackage: package); - ///
Tablet icon (sharp)
- static const IconData tablet_sharp = IconData(0xe1d7, fontFamily: familySharp, fontPackage: package); - ///
Tag Enterprise icon (sharp)
- static const IconData tag_enterprise_sharp = IconData(0xe1d8, fontFamily: familySharp, fontPackage: package); - ///
Tag icon (sharp)
- static const IconData tag_sharp = IconData(0xe1d9, fontFamily: familySharp, fontPackage: package); - ///
Tap To Pay icon (sharp)
- static const IconData tap_to_pay_sharp = IconData(0xe1da, fontFamily: familySharp, fontPackage: package); - ///
Taxi icon (sharp)
- static const IconData taxi_sharp = IconData(0xe1db, fontFamily: familySharp, fontPackage: package); - ///
Text Color icon (sharp)
- static const IconData text_color_sharp = IconData(0xe1dc, fontFamily: familySharp, fontPackage: package); - ///
Tiers icon (sharp)
- static const IconData tiers_sharp = IconData(0xe1dd, fontFamily: familySharp, fontPackage: package); - ///
Timecard Approve icon (sharp)
- static const IconData timecard_approve_sharp = IconData(0xe1de, fontFamily: familySharp, fontPackage: package); - ///
Timecard icon (sharp)
- static const IconData timecard_sharp = IconData(0xe1df, fontFamily: familySharp, fontPackage: package); - ///
Timecard Warning icon (sharp)
- static const IconData timecard_warning_sharp = IconData(0xe1e0, fontFamily: familySharp, fontPackage: package); - ///
Timer icon (sharp)
- static const IconData timer_sharp = IconData(0xe1e1, fontFamily: familySharp, fontPackage: package); - ///
Toggle Off icon (sharp)
- static const IconData toggle_off_sharp = IconData(0xe1e2, fontFamily: familySharp, fontPackage: package); - ///
Toggle On icon (sharp)
- static const IconData toggle_on_sharp = IconData(0xe1e3, fontFamily: familySharp, fontPackage: package); - ///
Touch icon (sharp)
- static const IconData touch_sharp = IconData(0xe1e4, fontFamily: familySharp, fontPackage: package); - ///
Train icon (sharp)
- static const IconData train_sharp = IconData(0xe1e5, fontFamily: familySharp, fontPackage: package); - ///
Transfer icon (sharp)
- static const IconData transfer_sharp = IconData(0xe1e6, fontFamily: familySharp, fontPackage: package); - ///
Trending Down icon (sharp)
- static const IconData trending_down_sharp = IconData(0xe1e7, fontFamily: familySharp, fontPackage: package); - ///
Trending Up icon (sharp)
- static const IconData trending_up_sharp = IconData(0xe1e8, fontFamily: familySharp, fontPackage: package); - ///
Tv icon (sharp)
- static const IconData tv_sharp = IconData(0xe1e9, fontFamily: familySharp, fontPackage: package); - ///
Twitter icon (sharp)
- static const IconData twitter_sharp = IconData(0xe1ea, fontFamily: familySharp, fontPackage: package); - ///
Type icon (sharp)
- static const IconData type_sharp = IconData(0xe1eb, fontFamily: familySharp, fontPackage: package); - ///
Uhf Rfid icon (sharp)
- static const IconData uhf_rfid_sharp = IconData(0xe1ec, fontFamily: familySharp, fontPackage: package); - ///
Underline icon (sharp)
- static const IconData underline_sharp = IconData(0xe1ed, fontFamily: familySharp, fontPackage: package); - ///
Undo icon (sharp)
- static const IconData undo_sharp = IconData(0xe1ee, fontFamily: familySharp, fontPackage: package); - ///
Unfold Less icon (sharp)
- static const IconData unfold_less_sharp = IconData(0xe1ef, fontFamily: familySharp, fontPackage: package); - ///
Unfold More icon (sharp)
- static const IconData unfold_more_sharp = IconData(0xe1f0, fontFamily: familySharp, fontPackage: package); - ///
Unlock Alt icon (sharp)
- static const IconData unlock_alt_sharp = IconData(0xe1f1, fontFamily: familySharp, fontPackage: package); - ///
Unlock icon (sharp)
- static const IconData unlock_sharp = IconData(0xe1f2, fontFamily: familySharp, fontPackage: package); - ///
Unsubscribe icon (sharp)
- static const IconData unsubscribe_sharp = IconData(0xe1f3, fontFamily: familySharp, fontPackage: package); - ///
Update icon (sharp)
- static const IconData update_sharp = IconData(0xe1f4, fontFamily: familySharp, fontPackage: package); - ///
Upload File icon (sharp)
- static const IconData upload_file_sharp = IconData(0xe1f5, fontFamily: familySharp, fontPackage: package); - ///
Upload icon (sharp)
- static const IconData upload_sharp = IconData(0xe1f6, fontFamily: familySharp, fontPackage: package); - ///
Usb Alt Device icon (sharp)
- static const IconData usb_alt_device_sharp = IconData(0xe1f7, fontFamily: familySharp, fontPackage: package); - ///
Usb Alt icon (sharp)
- static const IconData usb_alt_sharp = IconData(0xe1f8, fontFamily: familySharp, fontPackage: package); - ///
Usb icon (sharp)
- static const IconData usb_sharp = IconData(0xe1f9, fontFamily: familySharp, fontPackage: package); - ///
User Circle icon (sharp)
- static const IconData user_circle_sharp = IconData(0xe1fa, fontFamily: familySharp, fontPackage: package); - ///
User Minor icon (sharp)
- static const IconData user_minor_sharp = IconData(0xe1fb, fontFamily: familySharp, fontPackage: package); - ///
User Settings icon (sharp)
- static const IconData user_settings_sharp = IconData(0xe1fc, fontFamily: familySharp, fontPackage: package); - ///
User icon (sharp)
- static const IconData user_sharp = IconData(0xe1fd, fontFamily: familySharp, fontPackage: package); - ///
Vacation icon (sharp)
- static const IconData vacation_sharp = IconData(0xe1fe, fontFamily: familySharp, fontPackage: package); - ///
Verified icon (sharp)
- static const IconData verified_sharp = IconData(0xe1ff, fontFamily: familySharp, fontPackage: package); - ///
Very Satisfied icon (sharp)
- static const IconData very_satisfied_sharp = IconData(0xe200, fontFamily: familySharp, fontPackage: package); - ///
Video Camera icon (sharp)
- static const IconData video_camera_sharp = IconData(0xe201, fontFamily: familySharp, fontPackage: package); - ///
Video Off icon (sharp)
- static const IconData video_off_sharp = IconData(0xe202, fontFamily: familySharp, fontPackage: package); - ///
Video Play icon (sharp)
- static const IconData video_play_sharp = IconData(0xe203, fontFamily: familySharp, fontPackage: package); - ///
Video icon (sharp)
- static const IconData video_sharp = IconData(0xe204, fontFamily: familySharp, fontPackage: package); - ///
Visibility Off icon (sharp)
- static const IconData visibility_off_sharp = IconData(0xe205, fontFamily: familySharp, fontPackage: package); - ///
Visibility icon (sharp)
- static const IconData visibility_sharp = IconData(0xe206, fontFamily: familySharp, fontPackage: package); - ///
Volte icon (sharp)
- static const IconData volte_sharp = IconData(0xe207, fontFamily: familySharp, fontPackage: package); - ///
Volume Down icon (sharp)
- static const IconData volume_down_sharp = IconData(0xe208, fontFamily: familySharp, fontPackage: package); - ///
Volume Mute icon (sharp)
- static const IconData volume_mute_sharp = IconData(0xe209, fontFamily: familySharp, fontPackage: package); - ///
Volume Off icon (sharp)
- static const IconData volume_off_sharp = IconData(0xe20a, fontFamily: familySharp, fontPackage: package); - ///
Volume Up icon (sharp)
- static const IconData volume_up_sharp = IconData(0xe20b, fontFamily: familySharp, fontPackage: package); - ///
Warning Outline icon (sharp)
- static const IconData warning_outline_sharp = IconData(0xe20c, fontFamily: familySharp, fontPackage: package); - ///
Warning icon (sharp)
- static const IconData warning_sharp = IconData(0xe20d, fontFamily: familySharp, fontPackage: package); - ///
Watch icon (sharp)
- static const IconData watch_sharp = IconData(0xe20e, fontFamily: familySharp, fontPackage: package); - ///
Wb Image icon (sharp)
- static const IconData wb_image_sharp = IconData(0xe20f, fontFamily: familySharp, fontPackage: package); - ///
Wb icon (sharp)
- static const IconData wb_sharp = IconData(0xe210, fontFamily: familySharp, fontPackage: package); - ///
World Action icon (sharp)
- static const IconData world_action_sharp = IconData(0xe211, fontFamily: familySharp, fontPackage: package); - ///
World icon (sharp)
- static const IconData world_sharp = IconData(0xe212, fontFamily: familySharp, fontPackage: package); - ///
Write icon (sharp)
- static const IconData write_sharp = IconData(0xe213, fontFamily: familySharp, fontPackage: package); - ///
Youtube icon (sharp)
- static const IconData youtube_sharp = IconData(0xe214, fontFamily: familySharp, fontPackage: package); - ///
Zero Scale icon (sharp)
- static const IconData zero_scale_sharp = IconData(0xe215, fontFamily: familySharp, fontPackage: package); - ///
Zoom In Map icon (sharp)
- static const IconData zoom_in_map_sharp = IconData(0xe216, fontFamily: familySharp, fontPackage: package); - ///
Zoom In icon (sharp)
- static const IconData zoom_in_sharp = IconData(0xe217, fontFamily: familySharp, fontPackage: package); - ///
Zoom Out Map icon (sharp)
- static const IconData zoom_out_map_sharp = IconData(0xe218, fontFamily: familySharp, fontPackage: package); - ///
Zoom Out icon (sharp)
- static const IconData zoom_out_sharp = IconData(0xe219, fontFamily: familySharp, fontPackage: package); -} - - // List of all rounded icons. -const Map icons = { - 'activity': ZetaIcons.activity, - 'add_alert': ZetaIcons.add_alert, - 'add_box': ZetaIcons.add_box, - 'add_call': ZetaIcons.add_call, - 'add_circle_outline': ZetaIcons.add_circle_outline, - 'add_circle': ZetaIcons.add_circle, - 'add_group': ZetaIcons.add_group, - 'add_person': ZetaIcons.add_person, - 'add': ZetaIcons.add, - 'add_task': ZetaIcons.add_task, - 'adjustments': ZetaIcons.adjustments, - 'alarm': ZetaIcons.alarm, - 'alert_active': ZetaIcons.alert_active, - 'alert_outline': ZetaIcons.alert_outline, - 'alert': ZetaIcons.alert, - 'align_center': ZetaIcons.align_center, - 'align_horizontal_center': ZetaIcons.align_horizontal_center, - 'align_horizontal_left': ZetaIcons.align_horizontal_left, - 'align_horizontal_right': ZetaIcons.align_horizontal_right, - 'align_left': ZetaIcons.align_left, - 'align_right': ZetaIcons.align_right, - 'align_vertical_bottom': ZetaIcons.align_vertical_bottom, - 'align_vertical_center': ZetaIcons.align_vertical_center, - 'align_vertical_top': ZetaIcons.align_vertical_top, - 'analytics': ZetaIcons.analytics, - 'android': ZetaIcons.android, - 'antenna': ZetaIcons.antenna, - 'app_edit': ZetaIcons.app_edit, - 'apps': ZetaIcons.apps, - 'ar': ZetaIcons.ar, - 'arrow_back': ZetaIcons.arrow_back, - 'arrow_down': ZetaIcons.arrow_down, - 'arrow_forward': ZetaIcons.arrow_forward, - 'arrow_up': ZetaIcons.arrow_up, - 'attachment': ZetaIcons.attachment, - 'audio': ZetaIcons.audio, - 'audit_activity': ZetaIcons.audit_activity, - 'auto_delete': ZetaIcons.auto_delete, - 'auto': ZetaIcons.auto, - 'awb': ZetaIcons.awb, - 'backspace': ZetaIcons.backspace, - 'bad_mood': ZetaIcons.bad_mood, - 'barcode_bluetooth': ZetaIcons.barcode_bluetooth, - 'barcode_done': ZetaIcons.barcode_done, - 'barcode_image_scan': ZetaIcons.barcode_image_scan, - 'barcode_qr_code': ZetaIcons.barcode_qr_code, - 'barcode': ZetaIcons.barcode, - 'barcode_scanner_down': ZetaIcons.barcode_scanner_down, - 'barcode_settings': ZetaIcons.barcode_settings, - 'basket': ZetaIcons.basket, - 'battery_alert': ZetaIcons.battery_alert, - 'battery_charging': ZetaIcons.battery_charging, - 'battery': ZetaIcons.battery, - 'block_content': ZetaIcons.block_content, - 'block': ZetaIcons.block, - 'blog': ZetaIcons.blog, - 'bluetooth_disabled': ZetaIcons.bluetooth_disabled, - 'bluetooth': ZetaIcons.bluetooth, - 'bluetooth_searching': ZetaIcons.bluetooth_searching, - 'bold': ZetaIcons.bold, - 'bookmark_outline': ZetaIcons.bookmark_outline, - 'bookmark': ZetaIcons.bookmark, - 'brightness': ZetaIcons.brightness, - 'broadcast': ZetaIcons.broadcast, - 'build': ZetaIcons.build, - 'building': ZetaIcons.building, - 'bullet_list': ZetaIcons.bullet_list, - 'bus': ZetaIcons.bus, - 'cached': ZetaIcons.cached, - 'cafe': ZetaIcons.cafe, - 'calculator': ZetaIcons.calculator, - 'calendar_3_day': ZetaIcons.calendar_3_day, - 'calendar_alt_1': ZetaIcons.calendar_alt_1, - 'calendar_alt_2': ZetaIcons.calendar_alt_2, - 'calendar_available': ZetaIcons.calendar_available, - 'calendar_day': ZetaIcons.calendar_day, - 'calendar_edit': ZetaIcons.calendar_edit, - 'calendar_gantt': ZetaIcons.calendar_gantt, - 'calendar_monthly': ZetaIcons.calendar_monthly, - 'calendar_next': ZetaIcons.calendar_next, - 'calendar_range': ZetaIcons.calendar_range, - 'calendar_rollover': ZetaIcons.calendar_rollover, - 'calendar': ZetaIcons.calendar, - 'calendar_unavailable': ZetaIcons.calendar_unavailable, - 'calendar_weekly': ZetaIcons.calendar_weekly, - 'calendar_yearly': ZetaIcons.calendar_yearly, - 'call_back': ZetaIcons.call_back, - 'camera': ZetaIcons.camera, - 'camera_shutter': ZetaIcons.camera_shutter, - 'camera_switch_image': ZetaIcons.camera_switch_image, - 'camera_switch': ZetaIcons.camera_switch, - 'cancel_outline': ZetaIcons.cancel_outline, - 'cancel': ZetaIcons.cancel, - 'car': ZetaIcons.car, - 'card_orientation': ZetaIcons.card_orientation, - 'card_with_chip': ZetaIcons.card_with_chip, - 'caret_down': ZetaIcons.caret_down, - 'caret_left': ZetaIcons.caret_left, - 'caret_right': ZetaIcons.caret_right, - 'caret_sort': ZetaIcons.caret_sort, - 'caret_up': ZetaIcons.caret_up, - 'cast_connected': ZetaIcons.cast_connected, - 'cast': ZetaIcons.cast, - 'cellular_signal': ZetaIcons.cellular_signal, - 'certificate': ZetaIcons.certificate, - 'certified': ZetaIcons.certified, - 'chain': ZetaIcons.chain, - 'chart_bar': ZetaIcons.chart_bar, - 'chart_bubble_charts': ZetaIcons.chart_bubble_charts, - 'chart_bubble': ZetaIcons.chart_bubble, - 'chart_doughnut': ZetaIcons.chart_doughnut, - 'chart_filled_enterprise': ZetaIcons.chart_filled_enterprise, - 'chart_filled': ZetaIcons.chart_filled, - 'chart_gantt': ZetaIcons.chart_gantt, - 'chart_line_predict': ZetaIcons.chart_line_predict, - 'chart_line': ZetaIcons.chart_line, - 'chart_line_stacked': ZetaIcons.chart_line_stacked, - 'chart_outline': ZetaIcons.chart_outline, - 'chart_pie_charts': ZetaIcons.chart_pie_charts, - 'chart_pie_content': ZetaIcons.chart_pie_content, - 'chart_pie': ZetaIcons.chart_pie, - 'chart_scatter_plot': ZetaIcons.chart_scatter_plot, - 'chart_stacked': ZetaIcons.chart_stacked, - 'chart_waterfall': ZetaIcons.chart_waterfall, - 'chat_bot': ZetaIcons.chat_bot, - 'chat_bubble_outline': ZetaIcons.chat_bubble_outline, - 'chat_bubble': ZetaIcons.chat_bubble, - 'chat_message_read': ZetaIcons.chat_message_read, - 'chat_message_unread': ZetaIcons.chat_message_unread, - 'chat': ZetaIcons.chat, - 'chat_search': ZetaIcons.chat_search, - 'check_box_empty': ZetaIcons.check_box_empty, - 'check_box': ZetaIcons.check_box, - 'check_circle_outline_alt': ZetaIcons.check_circle_outline_alt, - 'check_circle_outline': ZetaIcons.check_circle_outline, - 'check_circle': ZetaIcons.check_circle, - 'check_mark': ZetaIcons.check_mark, - 'checklist': ZetaIcons.checklist, - 'chevron_left': ZetaIcons.chevron_left, - 'chevron_right': ZetaIcons.chevron_right, - 'choices': ZetaIcons.choices, - 'clipboard_action': ZetaIcons.clipboard_action, - 'clipboard': ZetaIcons.clipboard, - 'clock_available': ZetaIcons.clock_available, - 'clock_bid': ZetaIcons.clock_bid, - 'clock_edit': ZetaIcons.clock_edit, - 'clock_flexible': ZetaIcons.clock_flexible, - 'clock_in_progress': ZetaIcons.clock_in_progress, - 'clock_info': ZetaIcons.clock_info, - 'clock_missed': ZetaIcons.clock_missed, - 'clock_on': ZetaIcons.clock_on, - 'clock_outline': ZetaIcons.clock_outline, - 'clock_rollover': ZetaIcons.clock_rollover, - 'clock': ZetaIcons.clock, - 'clock_segment': ZetaIcons.clock_segment, - 'clock_start': ZetaIcons.clock_start, - 'clock_stop': ZetaIcons.clock_stop, - 'clock_switch': ZetaIcons.clock_switch, - 'clock_timer': ZetaIcons.clock_timer, - 'clock_upcoming': ZetaIcons.clock_upcoming, - 'close': ZetaIcons.close, - 'closed_caption': ZetaIcons.closed_caption, - 'cloud_done': ZetaIcons.cloud_done, - 'cloud_download': ZetaIcons.cloud_download, - 'cloud_off': ZetaIcons.cloud_off, - 'cloud_outline': ZetaIcons.cloud_outline, - 'cloud': ZetaIcons.cloud, - 'cloud_upload': ZetaIcons.cloud_upload, - 'color_fill': ZetaIcons.color_fill, - 'columns': ZetaIcons.columns, - 'contactless_pay': ZetaIcons.contactless_pay, - 'content': ZetaIcons.content, - 'contrast_image': ZetaIcons.contrast_image, - 'contrast': ZetaIcons.contrast, - 'conversation': ZetaIcons.conversation, - 'copy_file': ZetaIcons.copy_file, - 'create_new_folder': ZetaIcons.create_new_folder, - 'credit_card': ZetaIcons.credit_card, - 'credit_card_swipe': ZetaIcons.credit_card_swipe, - 'crop': ZetaIcons.crop, - 'dark_mode': ZetaIcons.dark_mode, - 'dashboard': ZetaIcons.dashboard, - 'delete_forever': ZetaIcons.delete_forever, - 'delete_outline': ZetaIcons.delete_outline, - 'delete': ZetaIcons.delete, - 'desktop': ZetaIcons.desktop, - 'device_settings': ZetaIcons.device_settings, - 'devices_ecosystem': ZetaIcons.devices_ecosystem, - 'devices': ZetaIcons.devices, - 'dialpad': ZetaIcons.dialpad, - 'dislike': ZetaIcons.dislike, - 'distribute_horizontal': ZetaIcons.distribute_horizontal, - 'distribute_vertical': ZetaIcons.distribute_vertical, - 'doc_attach': ZetaIcons.doc_attach, - 'document': ZetaIcons.document, - 'dollar': ZetaIcons.dollar, - 'download': ZetaIcons.download, - 'downloading': ZetaIcons.downloading, - 'drop_down_circle': ZetaIcons.drop_down_circle, - 'eas': ZetaIcons.eas, - 'edit_border': ZetaIcons.edit_border, - 'edit': ZetaIcons.edit, - 'email_alt': ZetaIcons.email_alt, - 'email_outline': ZetaIcons.email_outline, - 'email_reply_all': ZetaIcons.email_reply_all, - 'email': ZetaIcons.email, - 'end_call': ZetaIcons.end_call, - 'enterprise_diagnostics': ZetaIcons.enterprise_diagnostics, - 'environmental': ZetaIcons.environmental, - 'error_outline': ZetaIcons.error_outline, - 'error': ZetaIcons.error, - 'ethernet': ZetaIcons.ethernet, - 'exit': ZetaIcons.exit, - 'expand_less': ZetaIcons.expand_less, - 'expand_more': ZetaIcons.expand_more, - 'eye_dropper': ZetaIcons.eye_dropper, - 'eye_preview': ZetaIcons.eye_preview, - 'face_id': ZetaIcons.face_id, - 'facebook': ZetaIcons.facebook, - 'factory': ZetaIcons.factory, - 'fast_forward': ZetaIcons.fast_forward, - 'fast_rewind': ZetaIcons.fast_rewind, - 'file': ZetaIcons.file, - 'filter_alt': ZetaIcons.filter_alt, - 'filter': ZetaIcons.filter, - 'finished_download': ZetaIcons.finished_download, - 'first_page': ZetaIcons.first_page, - 'flag': ZetaIcons.flag, - 'flight_mode': ZetaIcons.flight_mode, - 'flight': ZetaIcons.flight, - 'flip': ZetaIcons.flip, - 'folder_file': ZetaIcons.folder_file, - 'folder_outline': ZetaIcons.folder_outline, - 'folder': ZetaIcons.folder, - 'font_size_decrease': ZetaIcons.font_size_decrease, - 'font_size_increase': ZetaIcons.font_size_increase, - 'format_shapes': ZetaIcons.format_shapes, - 'forward': ZetaIcons.forward, - 'freezer': ZetaIcons.freezer, - 'full_screen_exit': ZetaIcons.full_screen_exit, - 'full_screen': ZetaIcons.full_screen, - 'gif': ZetaIcons.gif, - 'glossary': ZetaIcons.glossary, - 'grid_off': ZetaIcons.grid_off, - 'grid_on': ZetaIcons.grid_on, - 'grid_view': ZetaIcons.grid_view, - 'group': ZetaIcons.group, - 'groups': ZetaIcons.groups, - 'hamburger_menu_navigation_rail': ZetaIcons.hamburger_menu_navigation_rail, - 'hamburger_menu': ZetaIcons.hamburger_menu, - 'hamburger_menu_thick': ZetaIcons.hamburger_menu_thick, - 'hand': ZetaIcons.hand, - 'happy': ZetaIcons.happy, - 'hdmi': ZetaIcons.hdmi, - 'hdr': ZetaIcons.hdr, - 'headphones': ZetaIcons.headphones, - 'headset': ZetaIcons.headset, - 'help_outline': ZetaIcons.help_outline, - 'help': ZetaIcons.help, - 'history': ZetaIcons.history, - 'home': ZetaIcons.home, - 'hourglass': ZetaIcons.hourglass, - 'how_do_i': ZetaIcons.how_do_i, - 'image_library': ZetaIcons.image_library, - 'image': ZetaIcons.image, - 'important_notification': ZetaIcons.important_notification, - 'inbox': ZetaIcons.inbox, - 'indent_decrease': ZetaIcons.indent_decrease, - 'indent_increase': ZetaIcons.indent_increase, - 'indeterminate_check_box': ZetaIcons.indeterminate_check_box, - 'info': ZetaIcons.info, - 'instagram': ZetaIcons.instagram, - 'ios_share': ZetaIcons.ios_share, - 'iso': ZetaIcons.iso, - 'issue_audit': ZetaIcons.issue_audit, - 'italic': ZetaIcons.italic, - 'jpg_attach': ZetaIcons.jpg_attach, - 'justify': ZetaIcons.justify, - 'keyboard': ZetaIcons.keyboard, - 'label': ZetaIcons.label, - 'laptop': ZetaIcons.laptop, - 'last_page': ZetaIcons.last_page, - 'layers': ZetaIcons.layers, - 'light_mode': ZetaIcons.light_mode, - 'light_rail_train': ZetaIcons.light_rail_train, - 'lightbulb': ZetaIcons.lightbulb, - 'like': ZetaIcons.like, - 'line_spacing': ZetaIcons.line_spacing, - 'link_add': ZetaIcons.link_add, - 'link': ZetaIcons.link, - 'linkedin': ZetaIcons.linkedin, - 'list_alt': ZetaIcons.list_alt, - 'list_bullet_contained': ZetaIcons.list_bullet_contained, - 'list_feedback': ZetaIcons.list_feedback, - 'list_form': ZetaIcons.list_form, - 'list': ZetaIcons.list, - 'local_shipping': ZetaIcons.local_shipping, - 'location_off': ZetaIcons.location_off, - 'location_point': ZetaIcons.location_point, - 'location': ZetaIcons.location, - 'lock_alt': ZetaIcons.lock_alt, - 'lock': ZetaIcons.lock, - 'lock_undo': ZetaIcons.lock_undo, - 'log_in': ZetaIcons.log_in, - 'log_out': ZetaIcons.log_out, - 'love_outline': ZetaIcons.love_outline, - 'love': ZetaIcons.love, - 'maintenance': ZetaIcons.maintenance, - 'map': ZetaIcons.map, - 'meal': ZetaIcons.meal, - 'medium': ZetaIcons.medium, - 'memory': ZetaIcons.memory, - 'message': ZetaIcons.message, - 'microphone_off': ZetaIcons.microphone_off, - 'microphone_outline': ZetaIcons.microphone_outline, - 'microphone': ZetaIcons.microphone, - 'mobile_friendly': ZetaIcons.mobile_friendly, - 'money_euro': ZetaIcons.money_euro, - 'money_pound': ZetaIcons.money_pound, - 'money_usd': ZetaIcons.money_usd, - 'monitor': ZetaIcons.monitor, - 'more_horizontal': ZetaIcons.more_horizontal, - 'more_vertical': ZetaIcons.more_vertical, - 'my_location': ZetaIcons.my_location, - 'navigate': ZetaIcons.navigate, - 'navigation': ZetaIcons.navigation, - 'near_me': ZetaIcons.near_me, - 'network_signal': ZetaIcons.network_signal, - 'new_chat': ZetaIcons.new_chat, - 'nfc': ZetaIcons.nfc, - 'night': ZetaIcons.night, - 'no_color': ZetaIcons.no_color, - 'note': ZetaIcons.note, - 'notifications_off': ZetaIcons.notifications_off, - 'numbered_list': ZetaIcons.numbered_list, - 'open_in_full': ZetaIcons.open_in_full, - 'open_in_new_window': ZetaIcons.open_in_new_window, - 'open_new_off': ZetaIcons.open_new_off, - 'page_height': ZetaIcons.page_height, - 'page_rotate': ZetaIcons.page_rotate, - 'page_width': ZetaIcons.page_width, - 'palette': ZetaIcons.palette, - 'partner': ZetaIcons.partner, - 'pause_circle': ZetaIcons.pause_circle, - 'pause': ZetaIcons.pause, - 'pdf_attach': ZetaIcons.pdf_attach, - 'pending': ZetaIcons.pending, - 'person_admin': ZetaIcons.person_admin, - 'person_assign': ZetaIcons.person_assign, - 'person_clock': ZetaIcons.person_clock, - 'person_info': ZetaIcons.person_info, - 'person_manager': ZetaIcons.person_manager, - 'person_move': ZetaIcons.person_move, - 'person_outline': ZetaIcons.person_outline, - 'person': ZetaIcons.person, - 'person_search': ZetaIcons.person_search, - 'person_swap': ZetaIcons.person_swap, - 'person_walk': ZetaIcons.person_walk, - 'phone_android': ZetaIcons.phone_android, - 'phone_bluetooth_speaker': ZetaIcons.phone_bluetooth_speaker, - 'phone_in_talk': ZetaIcons.phone_in_talk, - 'phone_iphone': ZetaIcons.phone_iphone, - 'phone': ZetaIcons.phone, - 'phonelink': ZetaIcons.phonelink, - 'phrase': ZetaIcons.phrase, - 'pin': ZetaIcons.pin, - 'place': ZetaIcons.place, - 'planogram': ZetaIcons.planogram, - 'play_circle': ZetaIcons.play_circle, - 'play_outline': ZetaIcons.play_outline, - 'play': ZetaIcons.play, - 'png_attach': ZetaIcons.png_attach, - 'point_gift': ZetaIcons.point_gift, - 'point_heart': ZetaIcons.point_heart, - 'point_money': ZetaIcons.point_money, - 'point_star': ZetaIcons.point_star, - 'point_token': ZetaIcons.point_token, - 'portrait': ZetaIcons.portrait, - 'ppt_attach': ZetaIcons.ppt_attach, - 'price': ZetaIcons.price, - 'printer': ZetaIcons.printer, - 'priority': ZetaIcons.priority, - 'pro': ZetaIcons.pro, - 'productivity_apps': ZetaIcons.productivity_apps, - 'ptt': ZetaIcons.ptt, - 'publish': ZetaIcons.publish, - 'push_pin': ZetaIcons.push_pin, - 'qr_code': ZetaIcons.qr_code, - 'queue': ZetaIcons.queue, - 'radio_button_checked': ZetaIcons.radio_button_checked, - 'radio_button_unchecked': ZetaIcons.radio_button_unchecked, - 'react_add': ZetaIcons.react_add, - 'react_thumbsup': ZetaIcons.react_thumbsup, - 'recall': ZetaIcons.recall, - 'receipt': ZetaIcons.receipt, - 'recording': ZetaIcons.recording, - 'redo': ZetaIcons.redo, - 'refresh': ZetaIcons.refresh, - 'remove_box': ZetaIcons.remove_box, - 'remove_circle_outline': ZetaIcons.remove_circle_outline, - 'remove_circle': ZetaIcons.remove_circle, - 'remove_group': ZetaIcons.remove_group, - 'remove_person': ZetaIcons.remove_person, - 'remove': ZetaIcons.remove, - 'renew': ZetaIcons.renew, - 'reorder': ZetaIcons.reorder, - 'repeat': ZetaIcons.repeat, - 'replay': ZetaIcons.replay, - 'reply': ZetaIcons.reply, - 'report': ZetaIcons.report, - 'restart_alt': ZetaIcons.restart_alt, - 'review': ZetaIcons.review, - 'road_map': ZetaIcons.road_map, - 'rotate_left': ZetaIcons.rotate_left, - 'rotate_right': ZetaIcons.rotate_right, - 'rss_feed': ZetaIcons.rss_feed, - 'rules': ZetaIcons.rules, - 'sad': ZetaIcons.sad, - 'satisfied': ZetaIcons.satisfied, - 'save_alt': ZetaIcons.save_alt, - 'save_content': ZetaIcons.save_content, - 'save': ZetaIcons.save, - 'scan_rate': ZetaIcons.scan_rate, - 'scanner': ZetaIcons.scanner, - 'schedule': ZetaIcons.schedule, - 'school': ZetaIcons.school, - 'screen_rotation': ZetaIcons.screen_rotation, - 'sd_card': ZetaIcons.sd_card, - 'search': ZetaIcons.search, - 'security_check': ZetaIcons.security_check, - 'security': ZetaIcons.security, - 'send': ZetaIcons.send, - 'settings': ZetaIcons.settings, - 'shape_recognition': ZetaIcons.shape_recognition, - 'share': ZetaIcons.share, - 'shared_folder': ZetaIcons.shared_folder, - 'ship': ZetaIcons.ship, - 'sim_card': ZetaIcons.sim_card, - 'skip_next': ZetaIcons.skip_next, - 'skip_previous': ZetaIcons.skip_previous, - 'slide_show': ZetaIcons.slide_show, - 'smart_phone': ZetaIcons.smart_phone, - 'sms': ZetaIcons.sms, - 'snooze': ZetaIcons.snooze, - 'solutions': ZetaIcons.solutions, - 'sort_content': ZetaIcons.sort_content, - 'sort': ZetaIcons.sort, - 'speaker': ZetaIcons.speaker, - 'star_half': ZetaIcons.star_half, - 'star_outline': ZetaIcons.star_outline, - 'star': ZetaIcons.star, - 'steps': ZetaIcons.steps, - 'sticker': ZetaIcons.sticker, - 'stop_circle': ZetaIcons.stop_circle, - 'stop': ZetaIcons.stop, - 'store_release': ZetaIcons.store_release, - 'store': ZetaIcons.store, - 'store_swap': ZetaIcons.store_swap, - 'store_transfer': ZetaIcons.store_transfer, - 'straighten': ZetaIcons.straighten, - 'strategy': ZetaIcons.strategy, - 'strikethrough': ZetaIcons.strikethrough, - 'subscribe': ZetaIcons.subscribe, - 'swap': ZetaIcons.swap, - 'switch_user': ZetaIcons.switch_user, - 'sync_action': ZetaIcons.sync_action, - 'sync_disabled': ZetaIcons.sync_disabled, - 'sync': ZetaIcons.sync, - 'table': ZetaIcons.table, - 'tablet_mac': ZetaIcons.tablet_mac, - 'tablet': ZetaIcons.tablet, - 'tag_enterprise': ZetaIcons.tag_enterprise, - 'tag': ZetaIcons.tag, - 'tap_to_pay': ZetaIcons.tap_to_pay, - 'taxi': ZetaIcons.taxi, - 'text_color': ZetaIcons.text_color, - 'tiers': ZetaIcons.tiers, - 'timecard_approve': ZetaIcons.timecard_approve, - 'timecard': ZetaIcons.timecard, - 'timecard_warning': ZetaIcons.timecard_warning, - 'timer': ZetaIcons.timer, - 'toggle_off': ZetaIcons.toggle_off, - 'toggle_on': ZetaIcons.toggle_on, - 'touch': ZetaIcons.touch, - 'train': ZetaIcons.train, - 'transfer': ZetaIcons.transfer, - 'trending_down': ZetaIcons.trending_down, - 'trending_up': ZetaIcons.trending_up, - 'tv': ZetaIcons.tv, - 'twitter': ZetaIcons.twitter, - 'type': ZetaIcons.type, - 'uhf_rfid': ZetaIcons.uhf_rfid, - 'underline': ZetaIcons.underline, - 'undo': ZetaIcons.undo, - 'unfold_less': ZetaIcons.unfold_less, - 'unfold_more': ZetaIcons.unfold_more, - 'unlock_alt': ZetaIcons.unlock_alt, - 'unlock': ZetaIcons.unlock, - 'unsubscribe': ZetaIcons.unsubscribe, - 'update': ZetaIcons.update, - 'upload_file': ZetaIcons.upload_file, - 'upload': ZetaIcons.upload, - 'usb_alt_device': ZetaIcons.usb_alt_device, - 'usb_alt': ZetaIcons.usb_alt, - 'usb': ZetaIcons.usb, - 'user_circle': ZetaIcons.user_circle, - 'user_minor': ZetaIcons.user_minor, - 'user': ZetaIcons.user, - 'user_settings': ZetaIcons.user_settings, - 'vacation': ZetaIcons.vacation, - 'verified': ZetaIcons.verified, - 'very_satisfied': ZetaIcons.very_satisfied, - 'video_camera': ZetaIcons.video_camera, - 'video_off': ZetaIcons.video_off, - 'video_play': ZetaIcons.video_play, - 'video': ZetaIcons.video, - 'visibility_off': ZetaIcons.visibility_off, - 'visibility': ZetaIcons.visibility, - 'volte': ZetaIcons.volte, - 'volume_down': ZetaIcons.volume_down, - 'volume_mute': ZetaIcons.volume_mute, - 'volume_off': ZetaIcons.volume_off, - 'volume_up': ZetaIcons.volume_up, - 'warning_outline': ZetaIcons.warning_outline, - 'warning': ZetaIcons.warning, - 'watch': ZetaIcons.watch, - 'wb_image': ZetaIcons.wb_image, - 'wb': ZetaIcons.wb, - 'world_action': ZetaIcons.world_action, - 'world': ZetaIcons.world, - 'write': ZetaIcons.write, - 'youtube': ZetaIcons.youtube, - 'zero_scale': ZetaIcons.zero_scale, - 'zoom_in_map': ZetaIcons.zoom_in_map, - 'zoom_in': ZetaIcons.zoom_in, - 'zoom_out_map': ZetaIcons.zoom_out_map, - 'zoom_out': ZetaIcons.zoom_out, -}; diff --git a/outputs/font/zeta-icons-round.ttf b/outputs/font/zeta-icons-round.ttf deleted file mode 100644 index dc0a88d8..00000000 Binary files a/outputs/font/zeta-icons-round.ttf and /dev/null differ diff --git a/outputs/font/zeta-icons-round.woff2 b/outputs/font/zeta-icons-round.woff2 deleted file mode 100644 index 00414a4c..00000000 Binary files a/outputs/font/zeta-icons-round.woff2 and /dev/null differ diff --git a/outputs/font/zeta-icons-sharp.ttf b/outputs/font/zeta-icons-sharp.ttf deleted file mode 100644 index 2d8a9d16..00000000 Binary files a/outputs/font/zeta-icons-sharp.ttf and /dev/null differ diff --git a/outputs/font/zeta-icons-sharp.woff2 b/outputs/font/zeta-icons-sharp.woff2 deleted file mode 100644 index c393a3e7..00000000 Binary files a/outputs/font/zeta-icons-sharp.woff2 and /dev/null differ diff --git a/outputs/icon-manifest.json b/outputs/icon-manifest.json deleted file mode 100644 index 33dd42ae..00000000 --- a/outputs/icon-manifest.json +++ /dev/null @@ -1 +0,0 @@ -{"259:1589":{"name":"Check Box","searchTerms":["Checked"],"roundPath":"outputs/icons/toggle/check_box_round.svg","sharpPath":"outputs/icons/toggle/check_box_sharp.svg","category":"toggle","roundId":"238:2777","sharpId":"125:1253"},"259:1591":{"name":"Check Box Empty","searchTerms":["Unchecked"],"roundPath":"outputs/icons/toggle/check_box_empty_round.svg","sharpPath":"outputs/icons/toggle/check_box_empty_sharp.svg","category":"toggle","roundId":"238:2775","sharpId":"125:1250"},"259:1592":{"name":"Indeterminate Check Box","searchTerms":["Half"],"roundPath":"outputs/icons/toggle/indeterminate_check_box_round.svg","sharpPath":"outputs/icons/toggle/indeterminate_check_box_sharp.svg","category":"toggle","roundId":"238:2766","sharpId":"125:1249"},"259:1593":{"name":"Radio Button Checked","searchTerms":["radio","on","button","Workcloud","WC"],"roundPath":"outputs/icons/toggle/radio_button_checked_round.svg","sharpPath":"outputs/icons/toggle/radio_button_checked_sharp.svg","category":"toggle","roundId":"238:2772","sharpId":"125:1251"},"259:1594":{"name":"Radio Button Unchecked","searchTerms":["radio","off","button","Workcloud","WC"],"roundPath":"outputs/icons/toggle/radio_button_unchecked_round.svg","sharpPath":"outputs/icons/toggle/radio_button_unchecked_sharp.svg","category":"toggle","roundId":"238:2774","sharpId":"125:1248"},"259:1595":{"name":"Toggle Off","searchTerms":["Switch","toggle","off","Workcloud","WC"],"roundPath":"outputs/icons/toggle/toggle_off_round.svg","sharpPath":"outputs/icons/toggle/toggle_off_sharp.svg","category":"toggle","roundId":"238:2768","sharpId":"125:1247"},"259:1596":{"name":"Toggle On","searchTerms":["Switch","toggle","on","Workcloud","WC"],"roundPath":"outputs/icons/toggle/toggle_on_round.svg","sharpPath":"outputs/icons/toggle/toggle_on_sharp.svg","category":"toggle","roundId":"238:2773","sharpId":"125:1244"},"259:1601":{"name":"Star","searchTerms":["Rating","favorite","star","mark","Workcloud","WC"],"roundPath":"outputs/icons/toggle/star_round.svg","sharpPath":"outputs/icons/toggle/star_sharp.svg","category":"toggle","roundId":"238:2770","sharpId":"125:1246"},"259:1602":{"name":"Star Outline","searchTerms":["Rating","Empty","favorite","Workcloud","WC"],"roundPath":"outputs/icons/toggle/star_outline_round.svg","sharpPath":"outputs/icons/toggle/star_outline_sharp.svg","category":"toggle","roundId":"238:2769","sharpId":"125:1245"},"259:1603":{"name":"Star Half","searchTerms":["Rating"],"roundPath":"outputs/icons/toggle/star_half_round.svg","sharpPath":"outputs/icons/toggle/star_half_sharp.svg","category":"toggle","roundId":"238:2776","sharpId":"125:1252"},"4932:3494":{"name":"Chart Bar","searchTerms":["Workcloud","WC","report","analytics","chart","bar","bar chart","bar-chart","bar graph","forecast"],"roundPath":"outputs/icons/charts/chart_bar_round.svg","sharpPath":"outputs/icons/charts/chart_bar_sharp.svg","category":"charts","roundId":"4066:3623","sharpId":"4932:3495"},"4932:3497":{"name":"Chart Line Predict","searchTerms":["Workcloud","WC","report","analytics","chart","predict"],"roundPath":"outputs/icons/charts/chart_line_predict_round.svg","sharpPath":"outputs/icons/charts/chart_line_predict_sharp.svg","category":"charts","roundId":"4066:3627","sharpId":"4932:3498"},"4932:3500":{"name":"Chart Line","searchTerms":["Workcloud","WC","report","analytics","chart","line chart","line-chart","linechart","trend","trendline","line graph"],"roundPath":"outputs/icons/charts/chart_line_round.svg","sharpPath":"outputs/icons/charts/chart_line_sharp.svg","category":"charts","roundId":"4066:3619","sharpId":"4932:3501"},"4932:3503":{"name":"Chart Pie","searchTerms":["Workcloud","WC","chart","pie","pie graph"],"roundPath":"outputs/icons/charts/chart_pie_round.svg","sharpPath":"outputs/icons/charts/chart_pie_sharp.svg","category":"charts","roundId":"4403:1677","sharpId":"4932:3504"},"4932:3506":{"name":"Chart Bubble","searchTerms":["Workcloud","WC","chart","bubble"],"roundPath":"outputs/icons/charts/chart_bubble_round.svg","sharpPath":"outputs/icons/charts/chart_bubble_sharp.svg","category":"charts","roundId":"4403:1674","sharpId":"4932:3507"},"4932:3509":{"name":"Chart Line Stacked","searchTerms":["Workcloud","WC","report","analytics","chart","Comparison chart","Comparison-chart"],"roundPath":"outputs/icons/charts/chart_line_stacked_round.svg","sharpPath":"outputs/icons/charts/chart_line_stacked_sharp.svg","category":"charts","roundId":"4475:3320","sharpId":"4932:3510"},"4932:3512":{"name":"Chart Bubble Charts","searchTerms":["Workcloud","WC","report","analytics","chart","bubble chart","bubble-chart","bubblechart"],"roundPath":"outputs/icons/charts/chart_bubble_charts_round.svg","sharpPath":"outputs/icons/charts/chart_bubble_charts_sharp.svg","category":"charts","roundId":"4066:3621","sharpId":"4932:3513"},"4932:3516":{"name":"Chart Pie Charts","searchTerms":["Workcloud","WC","report","analytics","chart","pie chart","pie-chart","piechart","Analysis","pie graph","balance"],"roundPath":"outputs/icons/charts/chart_pie_charts_round.svg","sharpPath":"outputs/icons/charts/chart_pie_charts_sharp.svg","category":"charts","roundId":"4066:3617","sharpId":"4932:3517"},"4932:3519":{"name":"Chart Waterfall","searchTerms":["Workcloud","WC","chart","waterfall"],"roundPath":"outputs/icons/charts/chart_waterfall_round.svg","sharpPath":"outputs/icons/charts/chart_waterfall_sharp.svg","category":"charts","roundId":"4310:3148","sharpId":"4932:3520"},"4932:3529":{"name":"Chart Filled","searchTerms":["Workcloud","WC","(used to display chart","report","analytics","not denote which type of chart is being used) report","analytics","chart","performance","graphic"],"roundPath":"outputs/icons/charts/chart_filled_round.svg","sharpPath":"outputs/icons/charts/chart_filled_sharp.svg","category":"charts","roundId":"4066:3629","sharpId":"4932:3530"},"4932:3532":{"name":"Chart Outline","searchTerms":["Workcloud","WC","report","analytics","chart outline","chart","Assessment"],"roundPath":"outputs/icons/charts/chart_outline_round.svg","sharpPath":"outputs/icons/charts/chart_outline_sharp.svg","category":"charts","roundId":"4475:3324","sharpId":"4932:3533"},"4932:3536":{"name":"Analytics","searchTerms":["Workcloud","WC","(used to display chart","report","analytics","not denote which type of chart is being used) report","analytics","chart","performance","graphic"],"roundPath":"outputs/icons/charts/analytics_round.svg","sharpPath":"outputs/icons/charts/analytics_sharp.svg","category":"charts","roundId":"4932:3535","sharpId":"4932:3537"},"4932:3541":{"name":"Chart Gantt","searchTerms":["Workcloud","WC","report","analytics","chart","Gantt chart","Gantt-chart"],"roundPath":"outputs/icons/charts/chart_gantt_round.svg","sharpPath":"outputs/icons/charts/chart_gantt_sharp.svg","category":"charts","roundId":"4475:3329","sharpId":"4932:3542"},"4932:3546":{"name":"Chart Stacked","searchTerms":["Workcloud","WC","report","analytics","chart","bar","bar chart","bar-chart","stacked","stack","stacked bar"],"roundPath":"outputs/icons/charts/chart_stacked_round.svg","sharpPath":"outputs/icons/charts/chart_stacked_sharp.svg","category":"charts","roundId":"4475:3328","sharpId":"4932:3547"},"4932:3549":{"name":"Chart Doughnut","searchTerms":["Workcloud","WC","report","analytics","chart","doughnut chart","doughtnut-chart","doughtnutchart","donut chart","donut-chart","donutchart"],"roundPath":"outputs/icons/charts/chart_doughnut_round.svg","sharpPath":"outputs/icons/charts/chart_doughnut_sharp.svg","category":"charts","roundId":"4475:3327","sharpId":"4932:3550"},"4932:3552":{"name":"Report","searchTerms":["Workcloud","WC","report","analytics"],"roundPath":"outputs/icons/charts/report_round.svg","sharpPath":"outputs/icons/charts/report_sharp.svg","category":"charts","roundId":"4066:3625","sharpId":"4932:3553"},"4932:3555":{"name":"Table","searchTerms":["Workcloud","WC","Table","analytics"],"roundPath":"outputs/icons/charts/table_round.svg","sharpPath":"outputs/icons/charts/table_sharp.svg","category":"charts","roundId":"4475:3326","sharpId":"4932:3556"},"4932:3558":{"name":"Chart Scatter Plot","searchTerms":["Workcloud","WC","report","analytics","chart","Scatter","Scatter chart","Scatter-chart"],"roundPath":"outputs/icons/charts/chart_scatter_plot_round.svg","sharpPath":"outputs/icons/charts/chart_scatter_plot_sharp.svg","category":"charts","roundId":"4475:3325","sharpId":"4932:3559"},"4932:3670":{"name":"Calendar Rollover","searchTerms":["Workcloud","WC","calendar","rollover","roll-over","roll over","split","carryover","carry-over","carry over","week split"],"roundPath":"outputs/icons/date_time/calendar_rollover_round.svg","sharpPath":"outputs/icons/date_time/calendar_rollover_sharp.svg","category":"date_time","roundId":"4070:4319","sharpId":"4932:3671"},"4932:3673":{"name":"Calendar Next","searchTerms":["Workcloud","WC","calendar","rollover","roll-over","roll over","split","carryover","carry-over","carry over","upcoming","upcoming shift"],"roundPath":"outputs/icons/date_time/calendar_next_round.svg","sharpPath":"outputs/icons/date_time/calendar_next_sharp.svg","category":"date_time","roundId":"4070:4321","sharpId":"4932:3674"},"4932:3676":{"name":"Calendar Gantt","searchTerms":["Workcloud","WC","calendar","rollover","roll-over","roll over","split","carryover","carry-over","carry over","upcoming"],"roundPath":"outputs/icons/date_time/calendar_gantt_round.svg","sharpPath":"outputs/icons/date_time/calendar_gantt_sharp.svg","category":"date_time","roundId":"4070:4323","sharpId":"4932:3677"},"4932:3680":{"name":"Schedule","searchTerms":["Workcloud","WC","calendar","available","publish","live","check","complete","published"],"roundPath":"outputs/icons/date_time/schedule_round.svg","sharpPath":"outputs/icons/date_time/schedule_sharp.svg","category":"date_time","roundId":"4070:4315","sharpId":"4932:3681"},"4932:3683":{"name":"Clock Flexible","searchTerms":["Workcloud","WC","clock","shift","time","flexible"],"roundPath":"outputs/icons/date_time/clock_flexible_round.svg","sharpPath":"outputs/icons/date_time/clock_flexible_sharp.svg","category":"date_time","roundId":"4066:4096","sharpId":"4932:3684"},"4932:3686":{"name":"Clock On","searchTerms":["Workcloud","WC","clock","shift","time","available","on","active"],"roundPath":"outputs/icons/date_time/clock_on_round.svg","sharpPath":"outputs/icons/date_time/clock_on_sharp.svg","category":"date_time","roundId":"4066:4094","sharpId":"4932:3687"},"4932:3690":{"name":"Clock Available","searchTerms":["Workcloud","WC","clock","shift","time","available","complete","check","publish"],"roundPath":"outputs/icons/date_time/clock_available_round.svg","sharpPath":"outputs/icons/date_time/clock_available_sharp.svg","category":"date_time","roundId":"4066:4092","sharpId":"4932:3691"},"4932:3693":{"name":"Clock Missed","searchTerms":["Workcloud","WC","clock","shift","time","missed","help"],"roundPath":"outputs/icons/date_time/clock_missed_round.svg","sharpPath":"outputs/icons/date_time/clock_missed_sharp.svg","category":"date_time","roundId":"4066:4090","sharpId":"4932:3694"},"4932:3696":{"name":"Clock Info","searchTerms":["Workcloud","WC","clock","shift","time","details","info","information"],"roundPath":"outputs/icons/date_time/clock_info_round.svg","sharpPath":"outputs/icons/date_time/clock_info_sharp.svg","category":"date_time","roundId":"4066:4088","sharpId":"4932:3697"},"4932:3699":{"name":"Clock Start","searchTerms":["Workcloud","WC","clock","shift","time","start","initiate","begin"],"roundPath":"outputs/icons/date_time/clock_start_round.svg","sharpPath":"outputs/icons/date_time/clock_start_sharp.svg","category":"date_time","roundId":"4066:4086","sharpId":"4932:3701"},"4932:3703":{"name":"Clock In Progress","searchTerms":["Workcloud","WC","clock","shift","time","inprogress","in-progress","in progress","ongoing"],"roundPath":"outputs/icons/date_time/clock_in_progress_round.svg","sharpPath":"outputs/icons/date_time/clock_in_progress_sharp.svg","category":"date_time","roundId":"4066:4084","sharpId":"4932:3704"},"4932:3706":{"name":"Clock Stop","searchTerms":["Workcloud","WC","clock","shift","time","stop","end"],"roundPath":"outputs/icons/date_time/clock_stop_round.svg","sharpPath":"outputs/icons/date_time/clock_stop_sharp.svg","category":"date_time","roundId":"4066:4082","sharpId":"4932:3707"},"4932:3709":{"name":"Clock Upcoming","searchTerms":["Workcloud","WC","clock","shift","time","swap","switch","trade","open shifts"],"roundPath":"outputs/icons/date_time/clock_upcoming_round.svg","sharpPath":"outputs/icons/date_time/clock_upcoming_sharp.svg","category":"date_time","roundId":"4889:198","sharpId":"4932:3710"},"4932:3712":{"name":"Clock Switch","searchTerms":["Workcloud","WC","clock","shift","time","swap","switch","trade"],"roundPath":"outputs/icons/date_time/clock_switch_round.svg","sharpPath":"outputs/icons/date_time/clock_switch_sharp.svg","category":"date_time","roundId":"4066:4080","sharpId":"4932:3713"},"4932:3715":{"name":"Clock Bid","searchTerms":["Workcloud","WC","clock","shift","time","bid"],"roundPath":"outputs/icons/date_time/clock_bid_round.svg","sharpPath":"outputs/icons/date_time/clock_bid_sharp.svg","category":"date_time","roundId":"4066:4078","sharpId":"4932:3716"},"4932:3718":{"name":"Clock Edit","searchTerms":["Workcloud","WC","clock","shift","time","edit","write","sign-up","sign","register","pencil","custom","request"],"roundPath":"outputs/icons/date_time/clock_edit_round.svg","sharpPath":"outputs/icons/date_time/clock_edit_sharp.svg","category":"date_time","roundId":"4066:4076","sharpId":"4932:3719"},"4932:3723":{"name":"Clock Rollover","searchTerms":["Workcloud","WC","clock","shift","time","over","overtime","carryover","carry over","carry-over"],"roundPath":"outputs/icons/date_time/clock_rollover_round.svg","sharpPath":"outputs/icons/date_time/clock_rollover_sharp.svg","category":"date_time","roundId":"4066:4074","sharpId":"4932:3724"},"4932:3726":{"name":"Clock Timer","searchTerms":["Workcloud","WC","clock","shift","time","timer","stopwatch","stop watch","on schedule"],"roundPath":"outputs/icons/date_time/clock_timer_round.svg","sharpPath":"outputs/icons/date_time/clock_timer_sharp.svg","category":"date_time","roundId":"4066:4072","sharpId":"4932:3727"},"4932:3729":{"name":"Clock Segment","searchTerms":["Workcloud","WC","clock","shift","time","timer","time left","remainder","remaining","remain"],"roundPath":"outputs/icons/date_time/clock_segment_round.svg","sharpPath":"outputs/icons/date_time/clock_segment_sharp.svg","category":"date_time","roundId":"4066:4070","sharpId":"4932:3730"},"4932:3734":{"name":"Timecard","searchTerms":["Workcloud","WC","timecard","time card","punch in","punch-in","punch out","punch-out"],"roundPath":"outputs/icons/date_time/timecard_round.svg","sharpPath":"outputs/icons/date_time/timecard_sharp.svg","category":"date_time","roundId":"4066:3785","sharpId":"4932:3735"},"4932:3737":{"name":"Timecard Warning","searchTerms":["Workcloud","WC","timecard","time card","warning","alert","attendance management"],"roundPath":"outputs/icons/date_time/timecard_warning_round.svg","sharpPath":"outputs/icons/date_time/timecard_warning_sharp.svg","category":"date_time","roundId":"4066:3783","sharpId":"4932:3738"},"4932:3740":{"name":"Timecard Approve","searchTerms":["Workcloud","WC","timecard","time card","approve","complete"],"roundPath":"outputs/icons/date_time/timecard_approve_round.svg","sharpPath":"outputs/icons/date_time/timecard_approve_sharp.svg","category":"date_time","roundId":"4066:3781","sharpId":"4932:3741"},"4932:3743":{"name":"Meal","searchTerms":["Workcloud","WC","meal","break","lunch","dinner","food"],"roundPath":"outputs/icons/date_time/meal_round.svg","sharpPath":"outputs/icons/date_time/meal_sharp.svg","category":"date_time","roundId":"4066:3847","sharpId":"4932:3744"},"4932:25":{"name":"Clipboard","searchTerms":["clipboard","note","workcloud","wc"],"roundPath":"outputs/icons/general/clipboard_round.svg","sharpPath":"outputs/icons/general/clipboard_sharp.svg","category":"general","roundId":"4055:3090","sharpId":"4932:29"},"4932:31":{"name":"Note","searchTerms":["Workcloud","WC","note","paper"],"roundPath":"outputs/icons/general/note_round.svg","sharpPath":"outputs/icons/general/note_sharp.svg","category":"general","roundId":"4055:3086","sharpId":"4932:32"},"4932:36":{"name":"Audit Activity","searchTerms":["Workcloud","WC","audit activity"],"roundPath":"outputs/icons/general/audit_activity_round.svg","sharpPath":"outputs/icons/general/audit_activity_sharp.svg","category":"general","roundId":"4055:3115","sharpId":"4932:37"},"4932:40":{"name":"List Feedback","searchTerms":["Workcloud","WC","list","feedback","items"],"roundPath":"outputs/icons/general/list_feedback_round.svg","sharpPath":"outputs/icons/general/list_feedback_sharp.svg","category":"general","roundId":"4055:3052","sharpId":"4932:41"},"4932:43":{"name":"List Bullet Contained","searchTerms":["Workcloud","WC","list","feedback","items"],"roundPath":"outputs/icons/general/list_bullet_contained_round.svg","sharpPath":"outputs/icons/general/list_bullet_contained_sharp.svg","category":"general","roundId":"4055:3048","sharpId":"4932:44"},"4932:46":{"name":"List Form","searchTerms":["Workcloud","WC","list","feedback","items"],"roundPath":"outputs/icons/general/list_form_round.svg","sharpPath":"outputs/icons/general/list_form_sharp.svg","category":"general","roundId":"4055:3046","sharpId":"4932:47"},"4932:49":{"name":"Face Id","searchTerms":["Workcloud","WC","activity","chart","line","log","history"],"roundPath":"outputs/icons/general/face_id_round.svg","sharpPath":"outputs/icons/general/face_id_sharp.svg","category":"general","roundId":"4055:3158","sharpId":"4932:50"},"4932:54":{"name":"Add Task","searchTerms":["Workcloud","WC","add","task","complete","check"],"roundPath":"outputs/icons/general/add_task_round.svg","sharpPath":"outputs/icons/general/add_task_sharp.svg","category":"general","roundId":"4055:3106","sharpId":"4932:55"},"4932:57":{"name":"Queue","searchTerms":["Workcloud","WC","add","queue"],"roundPath":"outputs/icons/general/queue_round.svg","sharpPath":"outputs/icons/general/queue_sharp.svg","category":"general","roundId":"4055:3104","sharpId":"4932:64"},"4937:474":{"name":"Video Off","searchTerms":["Workcloud","WC","video","hide","off"],"roundPath":"outputs/icons/general/video_off_round.svg","sharpPath":"outputs/icons/general/video_off_sharp.svg","category":"general","roundId":"4055:3123","sharpId":"4937:475"},"4937:477":{"name":"Video","searchTerms":["Workcloud","WC","video","conference"],"roundPath":"outputs/icons/general/video_round.svg","sharpPath":"outputs/icons/general/video_sharp.svg","category":"general","roundId":"4055:3094","sharpId":"4937:478"},"4937:480":{"name":"Write","searchTerms":["Workcloud","WC","write","edit","request","complete","change","compose"],"roundPath":"outputs/icons/general/write_round.svg","sharpPath":"outputs/icons/general/write_sharp.svg","category":"general","roundId":"4055:3080","sharpId":"4937:481"},"4937:483":{"name":"App Edit","searchTerms":["Workcloud","WC","app edit"],"roundPath":"outputs/icons/general/app_edit_round.svg","sharpPath":"outputs/icons/general/app_edit_sharp.svg","category":"general","roundId":"4055:3119","sharpId":"4937:484"},"4937:486":{"name":"Review","searchTerms":["Workcloud","WC","review"],"roundPath":"outputs/icons/general/review_round.svg","sharpPath":"outputs/icons/general/review_sharp.svg","category":"general","roundId":"4055:3054","sharpId":"4937:487"},"4937:489":{"name":"School","searchTerms":["Workcloud","WC","school","graduation","education","cap","academic"],"roundPath":"outputs/icons/general/school_round.svg","sharpPath":"outputs/icons/general/school_sharp.svg","category":"general","roundId":"4055:3125","sharpId":"4937:490"},"4937:492":{"name":"Store","searchTerms":["Workcloud","WC","store","business","retail"],"roundPath":"outputs/icons/general/store_round.svg","sharpPath":"outputs/icons/general/store_sharp.svg","category":"general","roundId":"4066:3859","sharpId":"4937:493"},"4937:495":{"name":"Sort","searchTerms":["Workcloud","WC","store","business","retail"],"roundPath":"outputs/icons/general/sort_round.svg","sharpPath":"outputs/icons/general/sort_sharp.svg","category":"general","roundId":"4403:1729","sharpId":"4937:496"},"4937:498":{"name":"Reorder","searchTerms":["Workcloud","WC","drag","reorder","move"],"roundPath":"outputs/icons/general/reorder_round.svg","sharpPath":"outputs/icons/general/reorder_sharp.svg","category":"general","roundId":"4055:3040","sharpId":"4937:499"},"4937:501":{"name":"Eye Preview","searchTerms":["Workcloud","WC","view settings\n\n\nuse this when configuring the display of something"],"roundPath":"outputs/icons/general/eye_preview_round.svg","sharpPath":"outputs/icons/general/eye_preview_sharp.svg","category":"general","roundId":"4055:3056","sharpId":"4937:502"},"4937:504":{"name":"Lock Undo","searchTerms":["Workcloud","WC","lock","security","unlock"],"roundPath":"outputs/icons/general/lock_undo_round.svg","sharpPath":"outputs/icons/general/lock_undo_sharp.svg","category":"general","roundId":"4055:3010","sharpId":"4937:505"},"4937:507":{"name":"Tag","searchTerms":["Workcloud","WC","tag"],"roundPath":"outputs/icons/general/tag_round.svg","sharpPath":"outputs/icons/general/tag_sharp.svg","category":"general","roundId":"4055:3070","sharpId":"4937:508"},"4937:510":{"name":"Link Add","searchTerms":["Workcloud","WC","link","hyperlink","add"],"roundPath":"outputs/icons/general/link_add_round.svg","sharpPath":"outputs/icons/general/link_add_sharp.svg","category":"general","roundId":"4055:3006","sharpId":"4937:511"},"4937:513":{"name":"Tiers","searchTerms":["Workcloud","WC","tiers","tree"],"roundPath":"outputs/icons/general/tiers_round.svg","sharpPath":"outputs/icons/general/tiers_sharp.svg","category":"general","roundId":"4055:3152","sharpId":"4937:514"},"4937:516":{"name":"Glossary","searchTerms":["Workcloud","WC","glossary"],"roundPath":"outputs/icons/general/glossary_round.svg","sharpPath":"outputs/icons/general/glossary_sharp.svg","category":"general","roundId":"4310:3861","sharpId":"4937:517"},"4937:519":{"name":"Activity","searchTerms":["Workcloud","WC","activity","chart","line","log","history"],"roundPath":"outputs/icons/general/activity_round.svg","sharpPath":"outputs/icons/general/activity_sharp.svg","category":"general","roundId":"4055:3156","sharpId":"4937:520"},"4937:522":{"name":"Store Swap","searchTerms":["Workcloud","WC","store","business","retail","sync","switch","swap","refresh"],"roundPath":"outputs/icons/general/store_swap_round.svg","sharpPath":"outputs/icons/general/store_swap_sharp.svg","category":"general","roundId":"4066:3857","sharpId":"4937:523"},"5512:2999":{"name":"Store Transfer","searchTerms":["Workcloud","WC","store","business","retail","sync","transfer","swap,"],"roundPath":"outputs/icons/general/store_transfer_round.svg","sharpPath":"outputs/icons/general/store_transfer_sharp.svg","category":"general","roundId":"5512:3000","sharpId":"5512:3002"},"5517:3016":{"name":"Store Release","searchTerms":["Workcloud","WC","store","business","retail","sync","switch","swap","release","transfer"],"roundPath":"outputs/icons/general/store_release_round.svg","sharpPath":"outputs/icons/general/store_release_sharp.svg","category":"general","roundId":"5517:3017","sharpId":"5517:3020"},"4937:525":{"name":"How Do I","searchTerms":["Workcloud","WC","how do i"],"roundPath":"outputs/icons/general/how_do_i_round.svg","sharpPath":"outputs/icons/general/how_do_i_sharp.svg","category":"general","roundId":"4055:3164","sharpId":"4937:526"},"4937:528":{"name":"Recall","searchTerms":["Workcloud","WC","recall","enter"],"roundPath":"outputs/icons/general/recall_round.svg","sharpPath":"outputs/icons/general/recall_sharp.svg","category":"general","roundId":"4055:2994","sharpId":"4937:529"},"4937:531":{"name":"Transfer","searchTerms":["Workcloud","WC","switch","swap","transfer","trade"],"roundPath":"outputs/icons/general/transfer_round.svg","sharpPath":"outputs/icons/general/transfer_sharp.svg","category":"general","roundId":"4055:3100","sharpId":"4937:532"},"5121:226":{"name":"Swap","searchTerms":["Workcloud","WC","switch","swap","transfer","trade"],"roundPath":"outputs/icons/general/swap_round.svg","sharpPath":"outputs/icons/general/swap_sharp.svg","category":"general","roundId":"5121:227","sharpId":"5121:229"},"4937:534":{"name":"Repeat","searchTerms":["Workcloud","WC","repeat"],"roundPath":"outputs/icons/general/repeat_round.svg","sharpPath":"outputs/icons/general/repeat_sharp.svg","category":"general","roundId":"4055:3022","sharpId":"4937:535"},"4937:538":{"name":"Exit","searchTerms":["Workcloud","WC","exit"],"roundPath":"outputs/icons/general/exit_round.svg","sharpPath":"outputs/icons/general/exit_sharp.svg","category":"general","roundId":"4055:3117","sharpId":"4937:539"},"4937:541":{"name":"Flip","searchTerms":["Workcloud","WC","flip","mirror"],"roundPath":"outputs/icons/general/flip_round.svg","sharpPath":"outputs/icons/general/flip_sharp.svg","category":"general","roundId":"4055:3024","sharpId":"4937:542"},"4937:544":{"name":"Vacation","searchTerms":["Workcloud","WC","vacation","pto","request-time","request time","time off","paid time off"],"roundPath":"outputs/icons/general/vacation_round.svg","sharpPath":"outputs/icons/general/vacation_sharp.svg","category":"general","roundId":"4066:3845","sharpId":"4937:545"},"4937:553":{"name":"Camera Switch","searchTerms":["Workcloud","WC","camera","photo","picture","flip","front","back"],"roundPath":"outputs/icons/general/camera_switch_round.svg","sharpPath":"outputs/icons/general/camera_switch_sharp.svg","category":"general","roundId":"4055:3096","sharpId":"4937:554"},"4937:556":{"name":"Building","searchTerms":["Workcloud","WC","building","organization","company"],"roundPath":"outputs/icons/general/building_round.svg","sharpPath":"outputs/icons/general/building_sharp.svg","category":"general","roundId":"4066:3855","sharpId":"4937:557"},"4932:78":{"name":"User Minor","searchTerms":["Workcloud","WC","user","person","minor","age","student","child"],"roundPath":"outputs/icons/people/user_minor_round.svg","sharpPath":"outputs/icons/people/user_minor_sharp.svg","category":"people","roundId":"4066:3710","sharpId":"4932:79"},"4932:82":{"name":"Person Swap","searchTerms":["Workcloud","WC","person","swap","labor","transfer","reassign"],"roundPath":"outputs/icons/people/person_swap_round.svg","sharpPath":"outputs/icons/people/person_swap_sharp.svg","category":"people","roundId":"4066:3853","sharpId":"4932:83"},"4932:85":{"name":"Person Walk","searchTerms":["Workcloud","WC","person","walk","store walk","store-walk","audit"],"roundPath":"outputs/icons/people/person_walk_round.svg","sharpPath":"outputs/icons/people/person_walk_sharp.svg","category":"people","roundId":"4066:3851","sharpId":"4932:86"},"4932:88":{"name":"Person Clock","searchTerms":["Workcloud","WC","associate","person","clock","shift","on-shift","onshift","available","attendance","punctuality"],"roundPath":"outputs/icons/people/person_clock_round.svg","sharpPath":"outputs/icons/people/person_clock_sharp.svg","category":"people","roundId":"4066:3706","sharpId":"4932:89"},"4932:91":{"name":"Person Move","searchTerms":["Workcloud","WC","associate","person","user","trade","transfer","borrow","move","borrowed employee","unscheduled labor transfer"],"roundPath":"outputs/icons/people/person_move_round.svg","sharpPath":"outputs/icons/people/person_move_sharp.svg","category":"people","roundId":"4066:3704","sharpId":"4932:92"},"4932:94":{"name":"Person Manager","searchTerms":["Workcloud","WC","manager","user","person","employee"],"roundPath":"outputs/icons/people/person_manager_round.svg","sharpPath":"outputs/icons/people/person_manager_sharp.svg","category":"people","roundId":"4066:3702","sharpId":"4932:95"},"4932:97":{"name":"Person Assign","searchTerms":["Workcloud","WC","person","user","assign","associate"],"roundPath":"outputs/icons/people/person_assign_round.svg","sharpPath":"outputs/icons/people/person_assign_sharp.svg","category":"people","roundId":"4066:3700","sharpId":"4932:98"},"4932:100":{"name":"Person Info","searchTerms":["Workcloud","WC","person","user","associate","info","details"],"roundPath":"outputs/icons/people/person_info_round.svg","sharpPath":"outputs/icons/people/person_info_sharp.svg","category":"people","roundId":"4066:3698","sharpId":"4932:101"},"4932:103":{"name":"Person Admin","searchTerms":["Workcloud","WC","admin"],"roundPath":"outputs/icons/people/person_admin_round.svg","sharpPath":"outputs/icons/people/person_admin_sharp.svg","category":"people","roundId":"4066:3720","sharpId":"4932:104"},"839:1911":{"name":"Barcode Settings","searchTerms":["Gear","Cog","Bar"],"roundPath":"outputs/icons/enterprise/barcode_settings_round.svg","sharpPath":"outputs/icons/enterprise/barcode_settings_sharp.svg","category":"enterprise","roundId":"839:1910","sharpId":"839:1912"},"839:1926":{"name":"Barcode Bluetooth","searchTerms":["Pill","Connection","Scanner"],"roundPath":"outputs/icons/enterprise/barcode_bluetooth_round.svg","sharpPath":"outputs/icons/enterprise/barcode_bluetooth_sharp.svg","category":"enterprise","roundId":"839:1925","sharpId":"839:1927"},"839:1941":{"name":"Barcode Scanner Down","searchTerms":[""],"roundPath":"outputs/icons/enterprise/barcode_scanner_down_round.svg","sharpPath":"outputs/icons/enterprise/barcode_scanner_down_sharp.svg","category":"enterprise","roundId":"839:1940","sharpId":"839:1942"},"839:1956":{"name":"Barcode QR Code","searchTerms":[""],"roundPath":"outputs/icons/enterprise/barcode_qr_code_round.svg","sharpPath":"outputs/icons/enterprise/barcode_qr_code_sharp.svg","category":"enterprise","roundId":"839:1955","sharpId":"839:1957"},"839:1985":{"name":"Calculator","searchTerms":["Math"],"roundPath":"outputs/icons/enterprise/calculator_round.svg","sharpPath":"outputs/icons/enterprise/calculator_sharp.svg","category":"enterprise","roundId":"839:1984","sharpId":"839:1986"},"839:1991":{"name":"Barcode","searchTerms":["Scan","Bar","Laser","Stock","Inventory"],"roundPath":"outputs/icons/enterprise/barcode_round.svg","sharpPath":"outputs/icons/enterprise/barcode_sharp.svg","category":"enterprise","roundId":"839:1990","sharpId":"839:1992"},"839:2004":{"name":"Card With Chip","searchTerms":[""],"roundPath":"outputs/icons/enterprise/card_with_chip_round.svg","sharpPath":"outputs/icons/enterprise/card_with_chip_sharp.svg","category":"enterprise","roundId":"839:2003","sharpId":"839:2005"},"839:2013":{"name":"Card Orientation","searchTerms":["Printer","Magnetic","Strip","Credit","Chip"],"roundPath":"outputs/icons/enterprise/card_orientation_round.svg","sharpPath":"outputs/icons/enterprise/card_orientation_sharp.svg","category":"enterprise","roundId":"839:2012","sharpId":"839:2014"},"839:2023":{"name":"Credit Card Swipe","searchTerms":["Magnetic","Stripe","Hand"],"roundPath":"outputs/icons/enterprise/credit_card_swipe_round.svg","sharpPath":"outputs/icons/enterprise/credit_card_swipe_sharp.svg","category":"enterprise","roundId":"839:2022","sharpId":"839:2024"},"839:2031":{"name":"Contactless Pay","searchTerms":["Tap","Wave"],"roundPath":"outputs/icons/enterprise/contactless_pay_round.svg","sharpPath":"outputs/icons/enterprise/contactless_pay_sharp.svg","category":"enterprise","roundId":"839:2030","sharpId":"839:2032"},"840:2038":{"name":"Tap To Pay","searchTerms":["Contactless"],"roundPath":"outputs/icons/enterprise/tap_to_pay_round.svg","sharpPath":"outputs/icons/enterprise/tap_to_pay_sharp.svg","category":"enterprise","roundId":"840:2037","sharpId":"840:2039"},"840:2045":{"name":"Planogram","searchTerms":[""],"roundPath":"outputs/icons/enterprise/planogram_round.svg","sharpPath":"outputs/icons/enterprise/planogram_sharp.svg","category":"enterprise","roundId":"840:2044","sharpId":"840:2046"},"841:2058":{"name":"Issue Audit","searchTerms":[""],"roundPath":"outputs/icons/enterprise/issue_audit_round.svg","sharpPath":"outputs/icons/enterprise/issue_audit_sharp.svg","category":"enterprise","roundId":"841:2057","sharpId":"841:2059"},"841:2071":{"name":"Barcode Done","searchTerms":["Check","Complete"],"roundPath":"outputs/icons/enterprise/barcode_done_round.svg","sharpPath":"outputs/icons/enterprise/barcode_done_sharp.svg","category":"enterprise","roundId":"841:2070","sharpId":"841:2072"},"841:2086":{"name":"Barcode Image Scan","searchTerms":["Box","Bounding"],"roundPath":"outputs/icons/enterprise/barcode_image_scan_round.svg","sharpPath":"outputs/icons/enterprise/barcode_image_scan_sharp.svg","category":"enterprise","roundId":"841:2085","sharpId":"841:2087"},"841:2101":{"name":"Factory","searchTerms":[""],"roundPath":"outputs/icons/enterprise/factory_round.svg","sharpPath":"outputs/icons/enterprise/factory_sharp.svg","category":"enterprise","roundId":"841:2100","sharpId":"841:2102"},"841:2120":{"name":"Receipt","searchTerms":["Bill","$"],"roundPath":"outputs/icons/enterprise/receipt_round.svg","sharpPath":"outputs/icons/enterprise/receipt_sharp.svg","category":"enterprise","roundId":"841:2119","sharpId":"841:2121"},"841:2137":{"name":"Scan Rate","searchTerms":["Box","Fast","Slow","Speed"],"roundPath":"outputs/icons/enterprise/scan_rate_round.svg","sharpPath":"outputs/icons/enterprise/scan_rate_sharp.svg","category":"enterprise","roundId":"841:2136","sharpId":"841:2138"},"843:2147":{"name":"Chart Filled Enterprise","searchTerms":["report","analytics","chart"],"roundPath":"outputs/icons/enterprise/chart_filled_enterprise_round.svg","sharpPath":"outputs/icons/enterprise/chart_filled_enterprise_sharp.svg","category":"enterprise","roundId":"843:2146","sharpId":"843:2148"},"843:2165":{"name":"Enterprise Diagnostics","searchTerms":[""],"roundPath":"outputs/icons/enterprise/enterprise_diagnostics_round.svg","sharpPath":"outputs/icons/enterprise/enterprise_diagnostics_sharp.svg","category":"enterprise","roundId":"843:2164","sharpId":"843:2166"},"843:2176":{"name":"EAS","searchTerms":[""],"roundPath":"outputs/icons/enterprise/eas_round.svg","sharpPath":"outputs/icons/enterprise/eas_sharp.svg","category":"enterprise","roundId":"843:2175","sharpId":"843:2177"},"843:2196":{"name":"Zero Scale","searchTerms":["Reset"],"roundPath":"outputs/icons/enterprise/zero_scale_round.svg","sharpPath":"outputs/icons/enterprise/zero_scale_sharp.svg","category":"enterprise","roundId":"843:2195","sharpId":"843:2197"},"843:2206":{"name":"Road Map","searchTerms":[""],"roundPath":"outputs/icons/enterprise/road_map_round.svg","sharpPath":"outputs/icons/enterprise/road_map_sharp.svg","category":"enterprise","roundId":"843:2205","sharpId":"843:2207"},"843:2218":{"name":"Rules","searchTerms":[""],"roundPath":"outputs/icons/enterprise/rules_round.svg","sharpPath":"outputs/icons/enterprise/rules_sharp.svg","category":"enterprise","roundId":"843:2217","sharpId":"843:2219"},"843:2230":{"name":"Choices","searchTerms":[""],"roundPath":"outputs/icons/enterprise/choices_round.svg","sharpPath":"outputs/icons/enterprise/choices_sharp.svg","category":"enterprise","roundId":"843:2229","sharpId":"843:2231"},"843:2242":{"name":"Strategy","searchTerms":["Presentation"],"roundPath":"outputs/icons/enterprise/strategy_round.svg","sharpPath":"outputs/icons/enterprise/strategy_sharp.svg","category":"enterprise","roundId":"843:2241","sharpId":"843:2243"},"843:2254":{"name":"Shape Recognition","searchTerms":["Circle","Square","Multicode"],"roundPath":"outputs/icons/enterprise/shape_recognition_round.svg","sharpPath":"outputs/icons/enterprise/shape_recognition_sharp.svg","category":"enterprise","roundId":"843:2253","sharpId":"843:2255"},"844:2264":{"name":"Solutions","searchTerms":["Puzzle"],"roundPath":"outputs/icons/enterprise/solutions_round.svg","sharpPath":"outputs/icons/enterprise/solutions_sharp.svg","category":"enterprise","roundId":"844:2263","sharpId":"844:2265"},"844:2271":{"name":"Environmental","searchTerms":["Green","Leaf","Leaves","Tree"],"roundPath":"outputs/icons/enterprise/environmental_round.svg","sharpPath":"outputs/icons/enterprise/environmental_sharp.svg","category":"enterprise","roundId":"844:2270","sharpId":"844:2272"},"844:2278":{"name":"Productivity Apps","searchTerms":["Mobile","Smart","Chart"],"roundPath":"outputs/icons/enterprise/productivity_apps_round.svg","sharpPath":"outputs/icons/enterprise/productivity_apps_sharp.svg","category":"enterprise","roundId":"844:2277","sharpId":"844:2279"},"844:2288":{"name":"Certificate","searchTerms":["Success","Badge"],"roundPath":"outputs/icons/enterprise/certificate_round.svg","sharpPath":"outputs/icons/enterprise/certificate_sharp.svg","category":"enterprise","roundId":"844:2287","sharpId":"844:2289"},"844:2310":{"name":"Steps","searchTerms":[""],"roundPath":"outputs/icons/enterprise/steps_round.svg","sharpPath":"outputs/icons/enterprise/steps_sharp.svg","category":"enterprise","roundId":"844:2309","sharpId":"844:2311"},"844:2320":{"name":"Freezer","searchTerms":["Ice","Cold","AC","Climate"],"roundPath":"outputs/icons/enterprise/freezer_round.svg","sharpPath":"outputs/icons/enterprise/freezer_sharp.svg","category":"enterprise","roundId":"844:2319","sharpId":"844:2321"},"258:1626":{"name":"Tag Enterprise","searchTerms":["Local","Discount","retail","shop","offer"],"roundPath":"outputs/icons/enterprise/tag_enterprise_round.svg","sharpPath":"outputs/icons/enterprise/tag_enterprise_sharp.svg","category":"enterprise","roundId":"238:1716","sharpId":"124:941"},"259:1491":{"name":"Block","searchTerms":["Block","delete","prevent","do not disturb","Workcloud","WC"],"roundPath":"outputs/icons/communication/block_round.svg","sharpPath":"outputs/icons/communication/block_sharp.svg","category":"communication","roundId":"238:2783","sharpId":"133:21"},"857:1922":{"name":"SIM Card","searchTerms":["GSM","Chip","Micro","Mini"],"roundPath":"outputs/icons/communication/sim_card_round.svg","sharpPath":"outputs/icons/communication/sim_card_sharp.svg","category":"communication","roundId":"857:1923","sharpId":"857:1926"},"259:1496":{"name":"Phone Bluetooth Speaker","searchTerms":["Call","Telephone"],"roundPath":"outputs/icons/communication/phone_bluetooth_speaker_round.svg","sharpPath":"outputs/icons/communication/phone_bluetooth_speaker_sharp.svg","category":"communication","roundId":"238:2786","sharpId":"133:13"},"259:1497":{"name":"Phone In Talk","searchTerms":["Call","Telephone","Speaker","Loud"],"roundPath":"outputs/icons/communication/phone_in_talk_round.svg","sharpPath":"outputs/icons/communication/phone_in_talk_sharp.svg","category":"communication","roundId":"238:2780","sharpId":"133:12"},"259:1500":{"name":"Priority","searchTerms":["High","Important","Workcloud","WC"],"roundPath":"outputs/icons/communication/priority_round.svg","sharpPath":"outputs/icons/communication/priority_sharp.svg","category":"communication","roundId":"238:2784","sharpId":"133:10"},"259:1503":{"name":"Sync","searchTerms":["Loading","Refresh","Reload","Loop","sync","synchronize","cached","Workcloud","WC"],"roundPath":"outputs/icons/communication/sync_round.svg","sharpPath":"outputs/icons/communication/sync_sharp.svg","category":"communication","roundId":"238:2789","sharpId":"133:19"},"259:1504":{"name":"Sync Disabled","searchTerms":["Off"],"roundPath":"outputs/icons/communication/sync_disabled_round.svg","sharpPath":"outputs/icons/communication/sync_disabled_sharp.svg","category":"communication","roundId":"238:2793","sharpId":"133:7"},"259:1502":{"name":"SD Card","searchTerms":["Memory","Micro"],"roundPath":"outputs/icons/communication/sd_card_round.svg","sharpPath":"outputs/icons/communication/sd_card_sharp.svg","category":"communication","roundId":"238:2792","sharpId":"133:8"},"243:4516":{"name":"Phone","searchTerms":["Call","Telephone","phone","Workcloud","WC"],"roundPath":"outputs/icons/communication/phone_round.svg","sharpPath":"outputs/icons/communication/phone_sharp.svg","category":"communication","roundId":"225:2418","sharpId":"124:695"},"243:4518":{"name":"Add Call","searchTerms":["Call","Telephone","IC"],"roundPath":"outputs/icons/communication/add_call_round.svg","sharpPath":"outputs/icons/communication/add_call_sharp.svg","category":"communication","roundId":"225:2419","sharpId":"124:708"},"5130:226":{"name":"Call Back","searchTerms":["Call","Telephone","Internet"],"roundPath":"outputs/icons/communication/call_back_round.svg","sharpPath":"outputs/icons/communication/call_back_sharp.svg","category":"communication","roundId":"5130:227","sharpId":"5130:234"},"858:1994":{"name":"End Call","searchTerms":["Telephone","Disconnect"],"roundPath":"outputs/icons/communication/end_call_round.svg","sharpPath":"outputs/icons/communication/end_call_sharp.svg","category":"communication","roundId":"858:1995","sharpId":"858:2002"},"243:4519":{"name":"Email Alt","searchTerms":["Mail","@","Internet"],"roundPath":"outputs/icons/communication/email_alt_round.svg","sharpPath":"outputs/icons/communication/email_alt_sharp.svg","category":"communication","roundId":"225:2424","sharpId":"124:705"},"243:4522":{"name":"Person Search","searchTerms":["Find","User"],"roundPath":"outputs/icons/communication/person_search_round.svg","sharpPath":"outputs/icons/communication/person_search_sharp.svg","category":"communication","roundId":"225:2422","sharpId":"124:703"},"858:1973":{"name":"Dialpad","searchTerms":["Num","Numpad","0-9","Numbers","keypad","dial","dialpad","number","ptt","phone","Workcloud","WC"],"roundPath":"outputs/icons/communication/dialpad_round.svg","sharpPath":"outputs/icons/communication/dialpad_sharp.svg","category":"communication","roundId":"858:1974","sharpId":"858:1980"},"243:4015":{"name":"Conversation","searchTerms":["Message","Talk","Chat","Bubble"],"roundPath":"outputs/icons/communication/conversation_round.svg","sharpPath":"outputs/icons/communication/conversation_sharp.svg","category":"communication","roundId":"223:1882","sharpId":"117:782"},"243:4523":{"name":"Message","searchTerms":["Comment","Message"],"roundPath":"outputs/icons/communication/message_round.svg","sharpPath":"outputs/icons/communication/message_sharp.svg","category":"communication","roundId":"225:2420","sharpId":"124:696"},"243:4524":{"name":"SMS","searchTerms":["Text","Message"],"roundPath":"outputs/icons/communication/sms_round.svg","sharpPath":"outputs/icons/communication/sms_sharp.svg","category":"communication","roundId":"225:2427","sharpId":"124:694"},"243:4530":{"name":"Chat Bubble","searchTerms":["Text","Message","comment filled"],"roundPath":"outputs/icons/communication/chat_bubble_round.svg","sharpPath":"outputs/icons/communication/chat_bubble_sharp.svg","category":"communication","roundId":"225:2428","sharpId":"124:701"},"243:4532":{"name":"Chat Bubble Outline","searchTerms":["Text","Message","chat","communication","comment","Workcloud","WC"],"roundPath":"outputs/icons/communication/chat_bubble_outline_round.svg","sharpPath":"outputs/icons/communication/chat_bubble_outline_sharp.svg","category":"communication","roundId":"225:2426","sharpId":"124:702"},"243:4537":{"name":"QR Code","searchTerms":["Code","Barcode","Scanner. qr","qr code","bar","scan","Workcloud","WC"],"roundPath":"outputs/icons/communication/qr_code_round.svg","sharpPath":"outputs/icons/communication/qr_code_sharp.svg","category":"communication","roundId":"225:2423","sharpId":"124:698"},"243:4538":{"name":"RSS Feed","searchTerms":["Feeds"],"roundPath":"outputs/icons/communication/rss_feed_round.svg","sharpPath":"outputs/icons/communication/rss_feed_sharp.svg","category":"communication","roundId":"225:2416","sharpId":"124:697"},"2661:3027":{"name":"Dollar","searchTerms":[""],"roundPath":"outputs/icons/communication/dollar_round.svg","sharpPath":"outputs/icons/communication/dollar_sharp.svg","category":"communication","roundId":"2661:3026","sharpId":"2661:3042"},"4932:3323":{"name":"New Chat","searchTerms":["Workcloud","WC","new","create","start","chat","message","communication","direct message","dm","sms","add message"],"roundPath":"outputs/icons/communication/new_chat_round.svg","sharpPath":"outputs/icons/communication/new_chat_sharp.svg","category":"communication","roundId":"4054:2298","sharpId":"4932:3324"},"4932:3326":{"name":"Chat Search","searchTerms":["Workcloud","WC","chat","message","communication","search","conversation","find"],"roundPath":"outputs/icons/communication/chat_search_round.svg","sharpPath":"outputs/icons/communication/chat_search_sharp.svg","category":"communication","roundId":"4403:1802","sharpId":"4932:3327"},"4932:3329":{"name":"Chat Message Unread","searchTerms":["Workcloud","WC","chat","message","communication","unread","notification","badge"],"roundPath":"outputs/icons/communication/chat_message_unread_round.svg","sharpPath":"outputs/icons/communication/chat_message_unread_sharp.svg","category":"communication","roundId":"4054:2267","sharpId":"4932:3330"},"4932:3336":{"name":"Chat","searchTerms":["Workcloud","WC","chat","message","communication"],"roundPath":"outputs/icons/communication/chat_round.svg","sharpPath":"outputs/icons/communication/chat_sharp.svg","category":"communication","roundId":"4403:1801","sharpId":"4932:3337"},"4932:3367":{"name":"Headset","searchTerms":["Workcloud","WC","headset","headphone","support"],"roundPath":"outputs/icons/communication/headset_round.svg","sharpPath":"outputs/icons/communication/headset_sharp.svg","category":"communication","roundId":"4054:1964","sharpId":"4932:3368"},"4932:3370":{"name":"Audio","searchTerms":["Workcloud","WC","audio","voice","message","sound","recording","record voice","sound bar","audio wave"],"roundPath":"outputs/icons/communication/audio_round.svg","sharpPath":"outputs/icons/communication/audio_sharp.svg","category":"communication","roundId":"4054:1973","sharpId":"4932:3371"},"4932:3393":{"name":"Navigate","searchTerms":["Workcloud","WC","navigation","channel","location"],"roundPath":"outputs/icons/communication/navigate_round.svg","sharpPath":"outputs/icons/communication/navigate_sharp.svg","category":"communication","roundId":"4054:1972","sharpId":"4932:3394"},"4932:3396":{"name":"Palette","searchTerms":["Workcloud","WC","art","palette","theme"],"roundPath":"outputs/icons/communication/palette_round.svg","sharpPath":"outputs/icons/communication/palette_sharp.svg","category":"communication","roundId":"4054:1960","sharpId":"4932:3397"},"4932:3399":{"name":"Recording","searchTerms":["Workcloud","WC","recording"],"roundPath":"outputs/icons/communication/recording_round.svg","sharpPath":"outputs/icons/communication/recording_sharp.svg","category":"communication","roundId":"4054:1969","sharpId":"4932:3400"},"4932:3402":{"name":"Basket","searchTerms":["Workcloud","WC","shift basket"],"roundPath":"outputs/icons/communication/basket_round.svg","sharpPath":"outputs/icons/communication/basket_sharp.svg","category":"communication","roundId":"4403:1780","sharpId":"4932:3403"},"4932:3405":{"name":"Lightbulb","searchTerms":["Workcloud","WC","lightbulb","light","idea","how","information","info"],"roundPath":"outputs/icons/communication/lightbulb_round.svg","sharpPath":"outputs/icons/communication/lightbulb_sharp.svg","category":"communication","roundId":"4054:1968","sharpId":"4932:3406"},"4932:3408":{"name":"Hourglass","searchTerms":["Workcloud","WC","hourglass","timer","time","wait","load","loading"],"roundPath":"outputs/icons/communication/hourglass_round.svg","sharpPath":"outputs/icons/communication/hourglass_sharp.svg","category":"communication","roundId":"4054:1970","sharpId":"4932:3409"},"4932:3411":{"name":"Location Off","searchTerms":["Workcloud","WC","location","pin","mark","here"],"roundPath":"outputs/icons/communication/location_off_round.svg","sharpPath":"outputs/icons/communication/location_off_sharp.svg","category":"communication","roundId":"4054:1974","sharpId":"4932:3412"},"4932:3414":{"name":"Notifications Off","searchTerms":["Workcloud","WC","notification-off","alert-off","bell-off"],"roundPath":"outputs/icons/communication/notifications_off_round.svg","sharpPath":"outputs/icons/communication/notifications_off_sharp.svg","category":"communication","roundId":"4054:1971","sharpId":"4932:3415"},"4937:71":{"name":"Email Reply All","searchTerms":["Workcloud","WC","email","e-mail","envelope","message","reply","reply-all","reply all"],"roundPath":"outputs/icons/communication/email_reply_all_round.svg","sharpPath":"outputs/icons/communication/email_reply_all_sharp.svg","category":"communication","roundId":"4054:2281","sharpId":"4937:72"},"4937:74":{"name":"Forward","searchTerms":["Workcloud","WC","email","e-mail","envelope","message","forward"],"roundPath":"outputs/icons/communication/forward_round.svg","sharpPath":"outputs/icons/communication/forward_sharp.svg","category":"communication","roundId":"4054:2277","sharpId":"4937:75"},"4937:77":{"name":"React Add","searchTerms":["Workcloud","WC","react","emoji","add emoji"],"roundPath":"outputs/icons/communication/react_add_round.svg","sharpPath":"outputs/icons/communication/react_add_sharp.svg","category":"communication","roundId":"4054:2247","sharpId":"4937:78"},"4937:80":{"name":"Chat Message Read","searchTerms":["Workcloud","WC","chat","message","communication","read","complete","published","live"],"roundPath":"outputs/icons/communication/chat_message_read_round.svg","sharpPath":"outputs/icons/communication/chat_message_read_sharp.svg","category":"communication","roundId":"4054:2265","sharpId":"4937:81"},"4937:83":{"name":"React Thumbsup","searchTerms":["Workcloud","WC","react","thumb","like"],"roundPath":"outputs/icons/communication/react_thumbsup_round.svg","sharpPath":"outputs/icons/communication/react_thumbsup_sharp.svg","category":"communication","roundId":"4054:2251","sharpId":"4937:84"},"4937:86":{"name":"Point Token","searchTerms":["Workcloud","WC","point","prize","token","earn"],"roundPath":"outputs/icons/communication/point_token_round.svg","sharpPath":"outputs/icons/communication/point_token_sharp.svg","category":"communication","roundId":"4054:2261","sharpId":"4937:87"},"4937:89":{"name":"Broadcast","searchTerms":["Workcloud","WC","broadcast","announcement","news","megaphone"],"roundPath":"outputs/icons/communication/broadcast_round.svg","sharpPath":"outputs/icons/communication/broadcast_sharp.svg","category":"communication","roundId":"4054:2237","sharpId":"4937:90"},"4937:92":{"name":"Inbox","searchTerms":["Workcloud","WC","inbox","feed"],"roundPath":"outputs/icons/communication/inbox_round.svg","sharpPath":"outputs/icons/communication/inbox_sharp.svg","category":"communication","roundId":"4054:2233","sharpId":"4937:93"},"4937:95":{"name":"Snooze","searchTerms":["Workcloud","WC","snooze"],"roundPath":"outputs/icons/communication/snooze_round.svg","sharpPath":"outputs/icons/communication/snooze_sharp.svg","category":"communication","roundId":"4054:2287","sharpId":"4937:96"},"4937:334":{"name":"Chat Bot","searchTerms":["Workcloud","WC","chat","message","communication"],"roundPath":"outputs/icons/communication/chat_bot_round.svg","sharpPath":"outputs/icons/communication/chat_bot_sharp.svg","category":"communication","roundId":"4054:2273","sharpId":"4937:335"},"4937:338":{"name":"GIF","searchTerms":["Workcloud","WC","gif"],"roundPath":"outputs/icons/communication/gif_round.svg","sharpPath":"outputs/icons/communication/gif_sharp.svg","category":"communication","roundId":"4054:2302","sharpId":"4937:339"},"4937:341":{"name":"Sticker","searchTerms":["Workcloud","WC","sticker"],"roundPath":"outputs/icons/communication/sticker_round.svg","sharpPath":"outputs/icons/communication/sticker_sharp.svg","category":"communication","roundId":"4568:532","sharpId":"4937:342"},"4937:344":{"name":"PTT","searchTerms":["ptt","push to talk","walkie talkie","radio"],"roundPath":"outputs/icons/communication/ptt_round.svg","sharpPath":"outputs/icons/communication/ptt_sharp.svg","category":"communication","roundId":"4595:3494","sharpId":"4937:345"},"4937:347":{"name":"Subscribe","searchTerms":["Workcloud","WC","subscribe"],"roundPath":"outputs/icons/communication/subscribe_round.svg","sharpPath":"outputs/icons/communication/subscribe_sharp.svg","category":"communication","roundId":"4054:2291","sharpId":"4937:348"},"4937:350":{"name":"Unsubscribe","searchTerms":["Workcloud","WC","unsubscribe"],"roundPath":"outputs/icons/communication/unsubscribe_round.svg","sharpPath":"outputs/icons/communication/unsubscribe_sharp.svg","category":"communication","roundId":"4054:2289","sharpId":"4937:351"},"833:1916":{"name":"VOLTE","searchTerms":["Signal","Network","Voice","Over"],"roundPath":"outputs/icons/device/volte_round.svg","sharpPath":"outputs/icons/device/volte_sharp.svg","category":"device","roundId":"833:1917","sharpId":"833:1924"},"256:763":{"name":"Bluetooth","searchTerms":[""],"roundPath":"outputs/icons/device/bluetooth_round.svg","sharpPath":"outputs/icons/device/bluetooth_sharp.svg","category":"device","roundId":"231:4444","sharpId":"133:55"},"256:764":{"name":"Bluetooth Searching","searchTerms":["Find","Wave"],"roundPath":"outputs/icons/device/bluetooth_searching_round.svg","sharpPath":"outputs/icons/device/bluetooth_searching_sharp.svg","category":"device","roundId":"231:4427","sharpId":"231:4423"},"256:765":{"name":"Bluetooth Disabled","searchTerms":["Off"],"roundPath":"outputs/icons/device/bluetooth_disabled_round.svg","sharpPath":"outputs/icons/device/bluetooth_disabled_sharp.svg","category":"device","roundId":"231:4438","sharpId":"133:49"},"256:766":{"name":"Location","searchTerms":["Search","GPS"],"roundPath":"outputs/icons/device/location_round.svg","sharpPath":"outputs/icons/device/location_sharp.svg","category":"device","roundId":"231:4432","sharpId":"225:4041"},"833:2089":{"name":"UHF RFID","searchTerms":["Ultra","High","Frequency","Radio","ID"],"roundPath":"outputs/icons/device/uhf_rfid_round.svg","sharpPath":"outputs/icons/device/uhf_rfid_sharp.svg","category":"device","roundId":"833:2090","sharpId":"833:2093"},"833:2254":{"name":"Antenna","searchTerms":["Frequency","Radio"],"roundPath":"outputs/icons/device/antenna_round.svg","sharpPath":"outputs/icons/device/antenna_sharp.svg","category":"device","roundId":"833:2255","sharpId":"833:2269"},"256:767":{"name":"Location Point","searchTerms":["GPS","Fixed"],"roundPath":"outputs/icons/device/location_point_round.svg","sharpPath":"outputs/icons/device/location_point_sharp.svg","category":"device","roundId":"231:4443","sharpId":"133:59"},"256:768":{"name":"Light Mode","searchTerms":["Brightness","Sun","light","day","morning","Workcloud","WC"],"roundPath":"outputs/icons/device/light_mode_round.svg","sharpPath":"outputs/icons/device/light_mode_sharp.svg","category":"device","roundId":"231:4442","sharpId":"133:56"},"256:769":{"name":"Dark Mode","searchTerms":["Night","Moon","Crescent"],"roundPath":"outputs/icons/device/dark_mode_round.svg","sharpPath":"outputs/icons/device/dark_mode_sharp.svg","category":"device","roundId":"231:4449","sharpId":"133:51"},"256:771":{"name":"Night","searchTerms":["Light","Dark","moon","night","evening","mode dark","Workcloud","WC"],"roundPath":"outputs/icons/device/night_round.svg","sharpPath":"outputs/icons/device/night_sharp.svg","category":"device","roundId":"231:4445","sharpId":"133:60"},"256:774":{"name":"Cellular Signal","searchTerms":["SIM","Network","Cell","GSM"],"roundPath":"outputs/icons/device/cellular_signal_round.svg","sharpPath":"outputs/icons/device/cellular_signal_sharp.svg","category":"device","roundId":"231:4450","sharpId":"133:45"},"833:1866":{"name":"Network Signal","searchTerms":["Cell","GSM"],"roundPath":"outputs/icons/device/network_signal_round.svg","sharpPath":"outputs/icons/device/network_signal_sharp.svg","category":"device","roundId":"833:1867","sharpId":"833:1870"},"256:776":{"name":"Restart Alt","searchTerms":["Start","Again","reset","Workcloud","WC"],"roundPath":"outputs/icons/device/restart_alt_round.svg","sharpPath":"outputs/icons/device/restart_alt_sharp.svg","category":"device","roundId":"250:902","sharpId":"133:48"},"256:779":{"name":"Screen Rotation","searchTerms":["Rotate","Left","Right","Vertical","Horizontal"],"roundPath":"outputs/icons/device/screen_rotation_round.svg","sharpPath":"outputs/icons/device/screen_rotation_sharp.svg","category":"device","roundId":"231:4437","sharpId":"133:47"},"256:781":{"name":"Devices","searchTerms":["Device","Responsive"],"roundPath":"outputs/icons/device/devices_round.svg","sharpPath":"outputs/icons/device/devices_sharp.svg","category":"device","roundId":"231:4440","sharpId":"225:3544"},"256:783":{"name":"USB","searchTerms":[""],"roundPath":"outputs/icons/device/usb_round.svg","sharpPath":"outputs/icons/device/usb_sharp.svg","category":"device","roundId":"231:4426","sharpId":"133:53"},"829:1804":{"name":"USB Alt","searchTerms":[""],"roundPath":"outputs/icons/device/usb_alt_round.svg","sharpPath":"outputs/icons/device/usb_alt_sharp.svg","category":"device","roundId":"829:1805","sharpId":"829:1808"},"833:2000":{"name":"USB Alt Device","searchTerms":["Data","Expansion","Disc","Disk","External"],"roundPath":"outputs/icons/device/usb_alt_device_round.svg","sharpPath":"outputs/icons/device/usb_alt_device_sharp.svg","category":"device","roundId":"833:2001","sharpId":"833:2004"},"257:784":{"name":"Brightness","searchTerms":["Medium","Mid"],"roundPath":"outputs/icons/device/brightness_round.svg","sharpPath":"outputs/icons/device/brightness_sharp.svg","category":"device","roundId":"231:4434","sharpId":"133:52"},"257:786":{"name":"Battery Alert","searchTerms":["Down","Alert","Warning"],"roundPath":"outputs/icons/device/battery_alert_round.svg","sharpPath":"outputs/icons/device/battery_alert_sharp.svg","category":"device","roundId":"231:4435","sharpId":"133:54"},"257:787":{"name":"Battery","searchTerms":["Charged","Full"],"roundPath":"outputs/icons/device/battery_round.svg","sharpPath":"outputs/icons/device/battery_sharp.svg","category":"device","roundId":"231:4446","sharpId":"133:58"},"257:788":{"name":"Battery Charging","searchTerms":["Full"],"roundPath":"outputs/icons/device/battery_charging_round.svg","sharpPath":"outputs/icons/device/battery_charging_sharp.svg","category":"device","roundId":"231:4448","sharpId":"133:61"},"257:789":{"name":"Flight Mode","searchTerms":["Airplane"],"roundPath":"outputs/icons/device/flight_mode_round.svg","sharpPath":"outputs/icons/device/flight_mode_sharp.svg","category":"device","roundId":"231:4436","sharpId":"225:4043"},"833:2189":{"name":"Ethernet","searchTerms":[""],"roundPath":"outputs/icons/device/ethernet_round.svg","sharpPath":"outputs/icons/device/ethernet_sharp.svg","category":"device","roundId":"833:2190","sharpId":"833:2193"},"833:2315":{"name":"NFC","searchTerms":["Near","Field","Communication"],"roundPath":"outputs/icons/device/nfc_round.svg","sharpPath":"outputs/icons/device/nfc_sharp.svg","category":"device","roundId":"833:2316","sharpId":"833:2319"},"833:2345":{"name":"Chain","searchTerms":["Link","Connect,Connected"],"roundPath":"outputs/icons/device/chain_round.svg","sharpPath":"outputs/icons/device/chain_sharp.svg","category":"device","roundId":"833:2346","sharpId":"833:2351"},"833:1827":{"name":"HDMI","searchTerms":[""],"roundPath":"outputs/icons/device/hdmi_round.svg","sharpPath":"outputs/icons/device/hdmi_sharp.svg","category":"device","roundId":"833:1828","sharpId":"833:1831"},"257:792":{"name":"Mobile Friendly","searchTerms":["GSM","Smart","Device","Check","Mark"],"roundPath":"outputs/icons/device/mobile_friendly_round.svg","sharpPath":"outputs/icons/device/mobile_friendly_sharp.svg","category":"device","roundId":"231:4430","sharpId":"231:4424"},"833:2204":{"name":"Contrast","searchTerms":[""],"roundPath":"outputs/icons/device/contrast_round.svg","sharpPath":"outputs/icons/device/contrast_sharp.svg","category":"device","roundId":"833:2205","sharpId":"833:2208"},"240:46":{"name":"Add Alert","searchTerms":["Notification"],"roundPath":"outputs/icons/alert/add_alert_round.svg","sharpPath":"outputs/icons/alert/add_alert_sharp.svg","category":"alert","roundId":"223:2054","sharpId":"125:1308"},"243:4376":{"name":"Auto Delete","searchTerms":["Trash","Bin","Time"],"roundPath":"outputs/icons/alert/auto_delete_round.svg","sharpPath":"outputs/icons/alert/auto_delete_sharp.svg","category":"alert","roundId":"223:2053","sharpId":"125:1307"},"243:4377":{"name":"Error","searchTerms":["Wrong","alert","warning","info","Workcloud","WC"],"roundPath":"outputs/icons/alert/error_round.svg","sharpPath":"outputs/icons/alert/error_sharp.svg","category":"alert","roundId":"223:2051","sharpId":"125:1306"},"243:4379":{"name":"Error Outline","searchTerms":["Wrong"],"roundPath":"outputs/icons/alert/error_outline_round.svg","sharpPath":"outputs/icons/alert/error_outline_sharp.svg","category":"alert","roundId":"223:2050","sharpId":"125:1304"},"243:4380":{"name":"Important Notification","searchTerms":["Urgent","Attention","priority","status","alert","alarm","bell","Workcloud","WC"],"roundPath":"outputs/icons/alert/important_notification_round.svg","sharpPath":"outputs/icons/alert/important_notification_sharp.svg","category":"alert","roundId":"223:2052","sharpId":"125:1302"},"243:4381":{"name":"Warning Outline","searchTerms":["Attention","Error","Caution","Alert"],"roundPath":"outputs/icons/alert/warning_outline_round.svg","sharpPath":"outputs/icons/alert/warning_outline_sharp.svg","category":"alert","roundId":"223:2049","sharpId":"125:1305"},"243:4382":{"name":"Warning","searchTerms":["Attention","Error","Caution","Alert"],"roundPath":"outputs/icons/alert/warning_round.svg","sharpPath":"outputs/icons/alert/warning_sharp.svg","category":"alert","roundId":"223:2048","sharpId":"125:1303"},"803:1800":{"name":"Alert","searchTerms":["Notification","alert","bell","Workcloud","WC"],"roundPath":"outputs/icons/alert/alert_round.svg","sharpPath":"outputs/icons/alert/alert_sharp.svg","category":"alert","roundId":"803:1801","sharpId":"803:1804"},"257:1126":{"name":"Alert Active","searchTerms":["Alert","notification","bell"],"roundPath":"outputs/icons/alert/alert_active_round.svg","sharpPath":"outputs/icons/alert/alert_active_sharp.svg","category":"alert","roundId":"231:5371","sharpId":"122:379"},"257:1128":{"name":"Alert Outline","searchTerms":["notification","alert","bell","Workcloud","WC"],"roundPath":"outputs/icons/alert/alert_outline_round.svg","sharpPath":"outputs/icons/alert/alert_outline_sharp.svg","category":"alert","roundId":"231:5361","sharpId":"122:377"},"257:1121":{"name":"Group","searchTerms":["People","profile","account","user","friends","group","profile","user multiple","associates","Workcloud","WC"],"roundPath":"outputs/icons/social/group_round.svg","sharpPath":"outputs/icons/social/group_sharp.svg","category":"social","roundId":"231:5368","sharpId":"122:376"},"788:2119":{"name":"Switch User","searchTerms":["People"],"roundPath":"outputs/icons/social/switch_user_round.svg","sharpPath":"outputs/icons/social/switch_user_sharp.svg","category":"social","roundId":"788:2120","sharpId":"788:2123"},"257:1119":{"name":"Add Person","searchTerms":["Add","User","Account","person","new hire","Workcloud","WC"],"roundPath":"outputs/icons/social/add_person_round.svg","sharpPath":"outputs/icons/social/add_person_sharp.svg","category":"social","roundId":"231:5359","sharpId":"122:383"},"257:1120":{"name":"Person Outline","searchTerms":["User","Account"],"roundPath":"outputs/icons/social/person_outline_round.svg","sharpPath":"outputs/icons/social/person_outline_sharp.svg","category":"social","roundId":"231:5354","sharpId":"122:374"},"257:1118":{"name":"Remove Person","searchTerms":["Remove","User Remove"],"roundPath":"outputs/icons/social/remove_person_round.svg","sharpPath":"outputs/icons/social/remove_person_sharp.svg","category":"social","roundId":"231:5351","sharpId":"122:371"},"257:1117":{"name":"Person","searchTerms":["User","Account","profile","Workcloud","WC"],"roundPath":"outputs/icons/social/person_round.svg","sharpPath":"outputs/icons/social/person_sharp.svg","category":"social","roundId":"231:5357","sharpId":"122:375"},"257:1122":{"name":"Add Group","searchTerms":["More","People"],"roundPath":"outputs/icons/social/add_group_round.svg","sharpPath":"outputs/icons/social/add_group_sharp.svg","category":"social","roundId":"231:5369","sharpId":"122:372"},"257:1123":{"name":"Remove Group","searchTerms":["Less","People","Remove"],"roundPath":"outputs/icons/social/remove_group_round.svg","sharpPath":"outputs/icons/social/remove_group_sharp.svg","category":"social","roundId":"231:5363","sharpId":"122:382"},"257:1124":{"name":"Groups","searchTerms":["People","profile","account","user","people","friends","group","department","team","Workcloud","WC"],"roundPath":"outputs/icons/social/groups_round.svg","sharpPath":"outputs/icons/social/groups_sharp.svg","category":"social","roundId":"231:5360","sharpId":"122:380"},"788:1946":{"name":"Medium","searchTerms":["Social","Media","Article"],"roundPath":"outputs/icons/social/medium_round.svg","sharpPath":"outputs/icons/social/medium_sharp.svg","category":"social","roundId":"788:1947","sharpId":"788:1950"},"788:1961":{"name":"YouTube","searchTerms":["Social","Media","Video"],"roundPath":"outputs/icons/social/youtube_round.svg","sharpPath":"outputs/icons/social/youtube_sharp.svg","category":"social","roundId":"788:1962","sharpId":"788:1968"},"788:1976":{"name":"Instagram","searchTerms":["Social","Media","Photo"],"roundPath":"outputs/icons/social/instagram_round.svg","sharpPath":"outputs/icons/social/instagram_sharp.svg","category":"social","roundId":"788:1977","sharpId":"788:1980"},"788:1991":{"name":"Facebook","searchTerms":["Social","Media"],"roundPath":"outputs/icons/social/facebook_round.svg","sharpPath":"outputs/icons/social/facebook_sharp.svg","category":"social","roundId":"788:1992","sharpId":"788:1998"},"788:2006":{"name":"Twitter","searchTerms":["Social","Media","Tweet"],"roundPath":"outputs/icons/social/twitter_round.svg","sharpPath":"outputs/icons/social/twitter_sharp.svg","category":"social","roundId":"788:2007","sharpId":"788:2010"},"788:2015":{"name":"Blog","searchTerms":["Social","Media"],"roundPath":"outputs/icons/social/blog_round.svg","sharpPath":"outputs/icons/social/blog_sharp.svg","category":"social","roundId":"788:2016","sharpId":"788:2019"},"788:2030":{"name":"LinkedIn","searchTerms":["Social","Media"],"roundPath":"outputs/icons/social/linkedin_round.svg","sharpPath":"outputs/icons/social/linkedin_sharp.svg","category":"social","roundId":"788:2031","sharpId":"788:2037"},"257:1132":{"name":"Bad Mood","searchTerms":["Sad","Unhappy"],"roundPath":"outputs/icons/social/bad_mood_round.svg","sharpPath":"outputs/icons/social/bad_mood_sharp.svg","category":"social","roundId":"231:5364","sharpId":"133:578"},"257:1133":{"name":"Happy","searchTerms":["Happy","Smiley","Satisfied"],"roundPath":"outputs/icons/social/happy_round.svg","sharpPath":"outputs/icons/social/happy_sharp.svg","category":"social","roundId":"231:5367","sharpId":"133:577"},"257:1134":{"name":"Sad","searchTerms":["Dissatisfied","Unhappy"],"roundPath":"outputs/icons/social/sad_round.svg","sharpPath":"outputs/icons/social/sad_sharp.svg","category":"social","roundId":"231:5355","sharpId":"133:576"},"257:1135":{"name":"Satisfied","searchTerms":["Happy","smiley"],"roundPath":"outputs/icons/social/satisfied_round.svg","sharpPath":"outputs/icons/social/satisfied_sharp.svg","category":"social","roundId":"231:5358","sharpId":"133:575"},"257:1136":{"name":"Very Satisfied","searchTerms":["Vey Happy","Happy"],"roundPath":"outputs/icons/social/very_satisfied_round.svg","sharpPath":"outputs/icons/social/very_satisfied_sharp.svg","category":"social","roundId":"231:5366","sharpId":"133:574"},"4937:23":{"name":"Partner","searchTerms":["Workcloud","WC","handshake","partner"],"roundPath":"outputs/icons/social/partner_round.svg","sharpPath":"outputs/icons/social/partner_sharp.svg","category":"social","roundId":"4054:2235","sharpId":"4937:24"},"4937:27":{"name":"Point Heart","searchTerms":["Workcloud","WC","point","prize","token","earn","heart"],"roundPath":"outputs/icons/social/point_heart_round.svg","sharpPath":"outputs/icons/social/point_heart_sharp.svg","category":"social","roundId":"4054:2257","sharpId":"4937:28"},"4937:32":{"name":"Point Star","searchTerms":["Workcloud","WC","point","prize","token","earn","star"],"roundPath":"outputs/icons/social/point_star_round.svg","sharpPath":"outputs/icons/social/point_star_sharp.svg","category":"social","roundId":"4054:2259","sharpId":"4937:33"},"4937:35":{"name":"Certified","searchTerms":["Workcloud","WC","verified","badge","title","status","certified"],"roundPath":"outputs/icons/social/certified_round.svg","sharpPath":"outputs/icons/social/certified_sharp.svg","category":"social","roundId":"4054:2241","sharpId":"4937:36"},"4937:38":{"name":"Phrase","searchTerms":["Workcloud","WC","broadcast","announcement","news","megaphone"],"roundPath":"outputs/icons/social/phrase_round.svg","sharpPath":"outputs/icons/social/phrase_sharp.svg","category":"social","roundId":"4054:2239","sharpId":"4937:39"},"4937:42":{"name":"Point Money","searchTerms":["Workcloud","WC","point","prize","token","earn","money","offer","give"],"roundPath":"outputs/icons/social/point_money_round.svg","sharpPath":"outputs/icons/social/point_money_sharp.svg","category":"social","roundId":"4054:2255","sharpId":"4937:43"},"4937:47":{"name":"Point Gift","searchTerms":["Workcloud","WC","point","prize","token","earn","gift","present"],"roundPath":"outputs/icons/social/point_gift_round.svg","sharpPath":"outputs/icons/social/point_gift_sharp.svg","category":"social","roundId":"4054:2253","sharpId":"4937:48"},"4937:57":{"name":"Money USD","searchTerms":["Workcloud","WC","USD","dollar","money"],"roundPath":"outputs/icons/social/money_usd_round.svg","sharpPath":"outputs/icons/social/money_usd_sharp.svg","category":"social","roundId":"4054:2285","sharpId":"4937:58"},"4937:60":{"name":"Money Euro","searchTerms":["Workcloud","WC","euro","money"],"roundPath":"outputs/icons/social/money_euro_round.svg","sharpPath":"outputs/icons/social/money_euro_sharp.svg","category":"social","roundId":"4316:310","sharpId":"4937:61"},"4937:63":{"name":"Money Pound","searchTerms":["Workcloud","WC","pound","money"],"roundPath":"outputs/icons/social/money_pound_round.svg","sharpPath":"outputs/icons/social/money_pound_sharp.svg","category":"social","roundId":"4475:3319","sharpId":"4937:64"},"258:1625":{"name":"Layers","searchTerms":[""],"roundPath":"outputs/icons/maps/layers_round.svg","sharpPath":"outputs/icons/maps/layers_sharp.svg","category":"maps","roundId":"238:1722","sharpId":"124:947"},"258:1627":{"name":"Near Me","searchTerms":["Direction","Arrow"],"roundPath":"outputs/icons/maps/near_me_round.svg","sharpPath":"outputs/icons/maps/near_me_sharp.svg","category":"maps","roundId":"238:1710","sharpId":"124:937"},"258:1628":{"name":"Place","searchTerms":["Pin","Location","mark","here","Workcloud","WC"],"roundPath":"outputs/icons/maps/place_round.svg","sharpPath":"outputs/icons/maps/place_sharp.svg","category":"maps","roundId":"238:1709","sharpId":"124:936"},"258:1629":{"name":"Map","searchTerms":["Fold","Folding","alternative work location","share stores"],"roundPath":"outputs/icons/maps/map_round.svg","sharpPath":"outputs/icons/maps/map_sharp.svg","category":"maps","roundId":"238:1714","sharpId":"124:943"},"258:1630":{"name":"My Location","searchTerms":["Find"],"roundPath":"outputs/icons/maps/my_location_round.svg","sharpPath":"outputs/icons/maps/my_location_sharp.svg","category":"maps","roundId":"238:1713","sharpId":"124:938"},"258:1631":{"name":"Navigation","searchTerms":["GPS"],"roundPath":"outputs/icons/maps/navigation_round.svg","sharpPath":"outputs/icons/maps/navigation_sharp.svg","category":"maps","roundId":"238:1711","sharpId":"124:946"},"258:1632":{"name":"Zoom In Map","searchTerms":[""],"roundPath":"outputs/icons/maps/zoom_in_map_round.svg","sharpPath":"outputs/icons/maps/zoom_in_map_sharp.svg","category":"maps","roundId":"238:1712","sharpId":"238:1706"},"258:1633":{"name":"Zoom Out Map","searchTerms":[""],"roundPath":"outputs/icons/maps/zoom_out_map_round.svg","sharpPath":"outputs/icons/maps/zoom_out_map_sharp.svg","category":"maps","roundId":"238:1721","sharpId":"124:944"},"258:1634":{"name":"Bus","searchTerms":["Direction","Public","Transport"],"roundPath":"outputs/icons/maps/bus_round.svg","sharpPath":"outputs/icons/maps/bus_sharp.svg","category":"maps","roundId":"238:1724","sharpId":"124:949"},"258:1635":{"name":"Light Rail Train","searchTerms":["Tram","Public","Transport"],"roundPath":"outputs/icons/maps/light_rail_train_round.svg","sharpPath":"outputs/icons/maps/light_rail_train_sharp.svg","category":"maps","roundId":"238:1719","sharpId":"124:935"},"258:1645":{"name":"Train","searchTerms":["Public","Transport"],"roundPath":"outputs/icons/maps/train_round.svg","sharpPath":"outputs/icons/maps/train_sharp.svg","category":"maps","roundId":"238:1708","sharpId":"124:942"},"258:1646":{"name":"Car","searchTerms":["Auto","Automobile"],"roundPath":"outputs/icons/maps/car_round.svg","sharpPath":"outputs/icons/maps/car_sharp.svg","category":"maps","roundId":"238:1723","sharpId":"124:945"},"258:1647":{"name":"Taxi","searchTerms":[""],"roundPath":"outputs/icons/maps/taxi_round.svg","sharpPath":"outputs/icons/maps/taxi_sharp.svg","category":"maps","roundId":"238:1718","sharpId":"238:1707"},"258:1648":{"name":"Local Shipping","searchTerms":["Transport","Truck","Loaded"],"roundPath":"outputs/icons/maps/local_shipping_round.svg","sharpPath":"outputs/icons/maps/local_shipping_sharp.svg","category":"maps","roundId":"238:1715","sharpId":"124:940"},"258:1649":{"name":"Flight","searchTerms":["Plane","Aeroplane","Fly"],"roundPath":"outputs/icons/maps/flight_round.svg","sharpPath":"outputs/icons/maps/flight_sharp.svg","category":"maps","roundId":"238:1725","sharpId":"124:948"},"788:1760":{"name":"Ship","searchTerms":["Naval","Sea","Ocean","Water","Wave"],"roundPath":"outputs/icons/maps/ship_round.svg","sharpPath":"outputs/icons/maps/ship_sharp.svg","category":"maps","roundId":"788:1761","sharpId":"788:1764"},"258:1650":{"name":"Cafe","searchTerms":["Coffee","Mug","Tea","break","Workcloud","WC"],"roundPath":"outputs/icons/maps/cafe_round.svg","sharpPath":"outputs/icons/maps/cafe_sharp.svg","category":"maps","roundId":"238:1720","sharpId":"133:506"},"788:1742":{"name":"World","searchTerms":["Language","Earth","Globe","global","international","Workcloud","WC"],"roundPath":"outputs/icons/maps/world_round.svg","sharpPath":"outputs/icons/maps/world_sharp.svg","category":"maps","roundId":"788:1743","sharpId":"788:1746"},"258:1335":{"name":"Finished Download","searchTerms":["Complete","Success","Done"],"roundPath":"outputs/icons/file/finished_download_round.svg","sharpPath":"outputs/icons/file/finished_download_sharp.svg","category":"file","roundId":"238:2801","sharpId":"124:958"},"258:1336":{"name":"Downloading","searchTerms":[""],"roundPath":"outputs/icons/file/downloading_round.svg","sharpPath":"outputs/icons/file/downloading_sharp.svg","category":"file","roundId":"238:2800","sharpId":"124:960"},"258:1338":{"name":"Cloud","searchTerms":[""],"roundPath":"outputs/icons/file/cloud_round.svg","sharpPath":"outputs/icons/file/cloud_sharp.svg","category":"file","roundId":"238:2812","sharpId":"124:966"},"258:1339":{"name":"Cloud Done","searchTerms":["Check","Check Mark","Mark"],"roundPath":"outputs/icons/file/cloud_done_round.svg","sharpPath":"outputs/icons/file/cloud_done_sharp.svg","category":"file","roundId":"238:2809","sharpId":"124:962"},"258:1340":{"name":"Cloud Download","searchTerms":["file","download","cloud","Workcloud","WC"],"roundPath":"outputs/icons/file/cloud_download_round.svg","sharpPath":"outputs/icons/file/cloud_download_sharp.svg","category":"file","roundId":"238:2803","sharpId":"124:961"},"258:1341":{"name":"Cloud Outline","searchTerms":[""],"roundPath":"outputs/icons/file/cloud_outline_round.svg","sharpPath":"outputs/icons/file/cloud_outline_sharp.svg","category":"file","roundId":"238:2805","sharpId":"124:963"},"258:1342":{"name":"Cloud Upload","searchTerms":["file","upload","cloud","Workcloud","WC"],"roundPath":"outputs/icons/file/cloud_upload_round.svg","sharpPath":"outputs/icons/file/cloud_upload_sharp.svg","category":"file","roundId":"238:2804","sharpId":"124:959"},"258:1351":{"name":"Cloud Off","searchTerms":["Offline"],"roundPath":"outputs/icons/file/cloud_off_round.svg","sharpPath":"outputs/icons/file/cloud_off_sharp.svg","category":"file","roundId":"238:2808","sharpId":"258:1346"},"258:1353":{"name":"Folder","searchTerms":["folder","Workcloud","WC"],"roundPath":"outputs/icons/file/folder_round.svg","sharpPath":"outputs/icons/file/folder_sharp.svg","category":"file","roundId":"238:2799","sharpId":"124:955"},"258:1354":{"name":"Create New Folder","searchTerms":["Add"],"roundPath":"outputs/icons/file/create_new_folder_round.svg","sharpPath":"outputs/icons/file/create_new_folder_sharp.svg","category":"file","roundId":"238:2802","sharpId":"124:965"},"258:1355":{"name":"Folder Outline","searchTerms":[""],"roundPath":"outputs/icons/file/folder_outline_round.svg","sharpPath":"outputs/icons/file/folder_outline_sharp.svg","category":"file","roundId":"238:2797","sharpId":"124:954"},"258:1356":{"name":"Shared Folder","searchTerms":["Network","Access"],"roundPath":"outputs/icons/file/shared_folder_round.svg","sharpPath":"outputs/icons/file/shared_folder_sharp.svg","category":"file","roundId":"238:2806","sharpId":"124:964"},"258:1357":{"name":"Grid View","searchTerms":["2x2"],"roundPath":"outputs/icons/file/grid_view_round.svg","sharpPath":"outputs/icons/file/grid_view_sharp.svg","category":"file","roundId":"238:2798","sharpId":"124:953"},"258:1358":{"name":"Upload File","searchTerms":[""],"roundPath":"outputs/icons/file/upload_file_round.svg","sharpPath":"outputs/icons/file/upload_file_sharp.svg","category":"file","roundId":"238:2796","sharpId":"124:952"},"258:1360":{"name":"JPG Attach","searchTerms":["Type","File"],"roundPath":"outputs/icons/file/jpg_attach_round.svg","sharpPath":"outputs/icons/file/jpg_attach_sharp.svg","category":"file","roundId":"238:2705","sharpId":"142:181"},"258:1361":{"name":"PDF Attach","searchTerms":["Type","File"],"roundPath":"outputs/icons/file/pdf_attach_round.svg","sharpPath":"outputs/icons/file/pdf_attach_sharp.svg","category":"file","roundId":"238:2703","sharpId":"142:180"},"258:1362":{"name":"PNG Attach","searchTerms":["Type","File"],"roundPath":"outputs/icons/file/png_attach_round.svg","sharpPath":"outputs/icons/file/png_attach_sharp.svg","category":"file","roundId":"238:2702","sharpId":"142:177"},"258:1363":{"name":"DOC Attach","searchTerms":["Type","File"],"roundPath":"outputs/icons/file/doc_attach_round.svg","sharpPath":"outputs/icons/file/doc_attach_sharp.svg","category":"file","roundId":"238:2704","sharpId":"142:179"},"258:1364":{"name":"PPT Attach","searchTerms":["Type","File"],"roundPath":"outputs/icons/file/ppt_attach_round.svg","sharpPath":"outputs/icons/file/ppt_attach_sharp.svg","category":"file","roundId":"238:2701","sharpId":"142:178"},"4932:3339":{"name":"Open New Off","searchTerms":["Workcloud","WC","file","do not export","export","open in new","open","launch"],"roundPath":"outputs/icons/file/open_new_off_round.svg","sharpPath":"outputs/icons/file/open_new_off_sharp.svg","category":"file","roundId":"4066:3526","sharpId":"4932:3340"},"4932:3342":{"name":"Page Height","searchTerms":["Workcloud","WC","page height"],"roundPath":"outputs/icons/file/page_height_round.svg","sharpPath":"outputs/icons/file/page_height_sharp.svg","category":"file","roundId":"4066:3546","sharpId":"4932:3343"},"4932:3345":{"name":"Page Width","searchTerms":["Workcloud","WC","page height"],"roundPath":"outputs/icons/file/page_width_round.svg","sharpPath":"outputs/icons/file/page_width_sharp.svg","category":"file","roundId":"4066:3548","sharpId":"4932:3346"},"4932:3348":{"name":"Page Rotate","searchTerms":["Workcloud","WC","page rotate"],"roundPath":"outputs/icons/file/page_rotate_round.svg","sharpPath":"outputs/icons/file/page_rotate_sharp.svg","category":"file","roundId":"4066:3550","sharpId":"4932:3349"},"4932:3352":{"name":"Save","searchTerms":["Workcloud","WC","file","save"],"roundPath":"outputs/icons/file/save_round.svg","sharpPath":"outputs/icons/file/save_sharp.svg","category":"file","roundId":"4066:3520","sharpId":"4932:3353"},"4932:3355":{"name":"Publish","searchTerms":["Workcloud","WC","file","publish"],"roundPath":"outputs/icons/file/publish_round.svg","sharpPath":"outputs/icons/file/publish_sharp.svg","category":"file","roundId":"4066:3532","sharpId":"4932:3356"},"4932:3358":{"name":"File","searchTerms":["Workcloud","WC","file","note","paper"],"roundPath":"outputs/icons/file/file_round.svg","sharpPath":"outputs/icons/file/file_sharp.svg","category":"file","roundId":"4066:3544","sharpId":"4932:3359"},"4932:3361":{"name":"Folder File","searchTerms":["Workcloud","WC","project","folder","file"],"roundPath":"outputs/icons/file/folder_file_round.svg","sharpPath":"outputs/icons/file/folder_file_sharp.svg","category":"file","roundId":"4055:3084","sharpId":"4932:3362"},"4932:3364":{"name":"Maintenance","searchTerms":["Workcloud","WC","maintenance","repair","hammer","wrench","tools"],"roundPath":"outputs/icons/file/maintenance_round.svg","sharpPath":"outputs/icons/file/maintenance_sharp.svg","category":"file","roundId":"4066:3843","sharpId":"4932:3365"},"257:1348":{"name":"Font Size Decrease","searchTerms":["Text","Small"],"roundPath":"outputs/icons/editor/font_size_decrease_round.svg","sharpPath":"outputs/icons/editor/font_size_decrease_sharp.svg","category":"editor","roundId":"238:233","sharpId":"125:1472"},"257:1349":{"name":"Font Size Increase","searchTerms":["Text","Big"],"roundPath":"outputs/icons/editor/font_size_increase_round.svg","sharpPath":"outputs/icons/editor/font_size_increase_sharp.svg","category":"editor","roundId":"238:231","sharpId":"125:1471"},"257:1350":{"name":"Bold","searchTerms":["Format","Text","Font"],"roundPath":"outputs/icons/editor/bold_round.svg","sharpPath":"outputs/icons/editor/bold_sharp.svg","category":"editor","roundId":"238:246","sharpId":"125:1483"},"257:1351":{"name":"Italic","searchTerms":["Format","Text","Font"],"roundPath":"outputs/icons/editor/italic_round.svg","sharpPath":"outputs/icons/editor/italic_sharp.svg","category":"editor","roundId":"238:247","sharpId":"125:1484"},"257:1352":{"name":"Edit","searchTerms":["edit","write","change","create","request","complete"],"roundPath":"outputs/icons/editor/edit_round.svg","sharpPath":"outputs/icons/editor/edit_sharp.svg","category":"editor","roundId":"238:242","sharpId":"125:1476"},"257:1353":{"name":"No Color","searchTerms":["Ink","Reset","Format","Print"],"roundPath":"outputs/icons/editor/no_color_round.svg","sharpPath":"outputs/icons/editor/no_color_sharp.svg","category":"editor","roundId":"238:234","sharpId":"125:1482"},"257:1354":{"name":"Color Fill","searchTerms":["Ink","Reset","Format","Print"],"roundPath":"outputs/icons/editor/color_fill_round.svg","sharpPath":"outputs/icons/editor/color_fill_sharp.svg","category":"editor","roundId":"238:238","sharpId":"125:1490"},"257:1355":{"name":"Type","searchTerms":["Title"],"roundPath":"outputs/icons/editor/type_round.svg","sharpPath":"outputs/icons/editor/type_sharp.svg","category":"editor","roundId":"238:236","sharpId":"125:1470"},"257:1356":{"name":"Strikethrough","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/strikethrough_round.svg","sharpPath":"outputs/icons/editor/strikethrough_sharp.svg","category":"editor","roundId":"238:250","sharpId":"125:1477"},"257:1357":{"name":"Underline","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/underline_round.svg","sharpPath":"outputs/icons/editor/underline_sharp.svg","category":"editor","roundId":"238:235","sharpId":"125:1475"},"257:1358":{"name":"Align Horizontal Center","searchTerms":["Middle"],"roundPath":"outputs/icons/editor/align_horizontal_center_round.svg","sharpPath":"outputs/icons/editor/align_horizontal_center_sharp.svg","category":"editor","roundId":"238:249","sharpId":"125:1486"},"258:1110":{"name":"Align Vertical Center","searchTerms":["Middle"],"roundPath":"outputs/icons/editor/align_vertical_center_round.svg","sharpPath":"outputs/icons/editor/align_vertical_center_sharp.svg","category":"editor","roundId":"238:243","sharpId":"125:1489"},"258:1111":{"name":"Align Horizontal Right","searchTerms":[""],"roundPath":"outputs/icons/editor/align_horizontal_right_round.svg","sharpPath":"outputs/icons/editor/align_horizontal_right_sharp.svg","category":"editor","roundId":"238:244","sharpId":"125:1493"},"258:1112":{"name":"Align Horizontal Left","searchTerms":[""],"roundPath":"outputs/icons/editor/align_horizontal_left_round.svg","sharpPath":"outputs/icons/editor/align_horizontal_left_sharp.svg","category":"editor","roundId":"238:245","sharpId":"238:3208"},"258:1113":{"name":"Align Vertical Bottom","searchTerms":[""],"roundPath":"outputs/icons/editor/align_vertical_bottom_round.svg","sharpPath":"outputs/icons/editor/align_vertical_bottom_sharp.svg","category":"editor","roundId":"238:248","sharpId":"125:1491"},"258:1114":{"name":"Align Vertical Top","searchTerms":[""],"roundPath":"outputs/icons/editor/align_vertical_top_round.svg","sharpPath":"outputs/icons/editor/align_vertical_top_sharp.svg","category":"editor","roundId":"238:241","sharpId":"125:1488"},"258:1115":{"name":"Checklist","searchTerms":["list","items","tasks","Workcloud","WC"],"roundPath":"outputs/icons/editor/checklist_round.svg","sharpPath":"outputs/icons/editor/checklist_sharp.svg","category":"editor","roundId":"238:240","sharpId":"125:1481"},"258:1116":{"name":"Indent Decrease","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/indent_decrease_round.svg","sharpPath":"outputs/icons/editor/indent_decrease_sharp.svg","category":"editor","roundId":"238:237","sharpId":"125:1492"},"258:1117":{"name":"Indent Increase","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/indent_increase_round.svg","sharpPath":"outputs/icons/editor/indent_increase_sharp.svg","category":"editor","roundId":"238:251","sharpId":"238:3212"},"258:1118":{"name":"Bullet List","searchTerms":["Type","Format","list","items","Workcloud","WC"],"roundPath":"outputs/icons/editor/bullet_list_round.svg","sharpPath":"outputs/icons/editor/bullet_list_sharp.svg","category":"editor","roundId":"238:232","sharpId":"125:1479"},"258:1119":{"name":"Distribute Vertical","searchTerms":["Type","Format","Align"],"roundPath":"outputs/icons/editor/distribute_vertical_round.svg","sharpPath":"outputs/icons/editor/distribute_vertical_sharp.svg","category":"editor","roundId":"238:220","sharpId":"125:1469"},"258:1120":{"name":"Distribute Horizontal","searchTerms":["Type","Format","Align"],"roundPath":"outputs/icons/editor/distribute_horizontal_round.svg","sharpPath":"outputs/icons/editor/distribute_horizontal_sharp.svg","category":"editor","roundId":"238:222","sharpId":"238:3216"},"258:1121":{"name":"Line Spacing","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/line_spacing_round.svg","sharpPath":"outputs/icons/editor/line_spacing_sharp.svg","category":"editor","roundId":"238:239","sharpId":"125:1480"},"258:1122":{"name":"Numbered List","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/numbered_list_round.svg","sharpPath":"outputs/icons/editor/numbered_list_sharp.svg","category":"editor","roundId":"238:3227","sharpId":"238:3265"},"258:1123":{"name":"Align Left","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/align_left_round.svg","sharpPath":"outputs/icons/editor/align_left_sharp.svg","category":"editor","roundId":"238:226","sharpId":"125:1487"},"258:1125":{"name":"Align Right","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/align_right_round.svg","sharpPath":"outputs/icons/editor/align_right_sharp.svg","category":"editor","roundId":"238:225","sharpId":"238:3252"},"258:1126":{"name":"Align Center","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/align_center_round.svg","sharpPath":"outputs/icons/editor/align_center_sharp.svg","category":"editor","roundId":"238:228","sharpId":"238:3253"},"258:1151":{"name":"Justify","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/justify_round.svg","sharpPath":"outputs/icons/editor/justify_sharp.svg","category":"editor","roundId":"238:227","sharpId":"238:3251"},"258:1171":{"name":"Edit Border","searchTerms":["Style","Color","Colour","Shape"],"roundPath":"outputs/icons/editor/edit_border_round.svg","sharpPath":"outputs/icons/editor/edit_border_sharp.svg","category":"editor","roundId":"238:229","sharpId":"238:3262"},"258:1172":{"name":"Format Shapes","searchTerms":["Text","Bounding","Box"],"roundPath":"outputs/icons/editor/format_shapes_round.svg","sharpPath":"outputs/icons/editor/format_shapes_sharp.svg","category":"editor","roundId":"238:224","sharpId":"238:3263"},"258:1173":{"name":"Attachment","searchTerms":["File","Document","attachment","paperchip","Workcloud","WC"],"roundPath":"outputs/icons/editor/attachment_round.svg","sharpPath":"outputs/icons/editor/attachment_sharp.svg","category":"editor","roundId":"238:230","sharpId":"125:1474"},"258:1174":{"name":"Link","searchTerms":["Chain","Insert","hyperlink"],"roundPath":"outputs/icons/editor/link_round.svg","sharpPath":"outputs/icons/editor/link_sharp.svg","category":"editor","roundId":"238:221","sharpId":"125:1478"},"258:1175":{"name":"Text Color","searchTerms":["Type","Format"],"roundPath":"outputs/icons/editor/text_color_round.svg","sharpPath":"outputs/icons/editor/text_color_sharp.svg","category":"editor","roundId":"238:3229","sharpId":"125:1485"},"240:33":{"name":"Home","searchTerms":["Main","home","house","Workcloud","WC"],"roundPath":"outputs/icons/action/home_round.svg","sharpPath":"outputs/icons/action/home_sharp.svg","category":"action","roundId":"217:679","sharpId":"117:752"},"238:3298":{"name":"Search","searchTerms":["search","magnifying glass","Workcloud","WC"],"roundPath":"outputs/icons/action/search_round.svg","sharpPath":"outputs/icons/action/search_sharp.svg","category":"action","roundId":"217:678","sharpId":"116:6"},"243:3763":{"name":"Settings","searchTerms":["Cog","Gear","settings","configuration","Workcloud","WC"],"roundPath":"outputs/icons/action/settings_round.svg","sharpPath":"outputs/icons/action/settings_sharp.svg","category":"action","roundId":"217:692","sharpId":"117:754"},"243:3765":{"name":"Info","searchTerms":["information","details","Workcloud","WC"],"roundPath":"outputs/icons/action/info_round.svg","sharpPath":"outputs/icons/action/info_sharp.svg","category":"action","roundId":"217:693","sharpId":"117:756"},"243:4005":{"name":"Check Circle Outline Alt","searchTerms":["Done","Complete","Mark"],"roundPath":"outputs/icons/action/check_circle_outline_alt_round.svg","sharpPath":"outputs/icons/action/check_circle_outline_alt_sharp.svg","category":"action","roundId":"223:1898","sharpId":"117:785"},"243:3769":{"name":"Check Circle Outline","searchTerms":["Done","Complete","Mark","Workcloud","WC"],"roundPath":"outputs/icons/action/check_circle_outline_round.svg","sharpPath":"outputs/icons/action/check_circle_outline_sharp.svg","category":"action","roundId":"223:1864","sharpId":"117:778"},"243:3767":{"name":"Check Circle","searchTerms":["Done","Complete","Mark","check","complete","done","Workcloud","WC"],"roundPath":"outputs/icons/action/check_circle_round.svg","sharpPath":"outputs/icons/action/check_circle_sharp.svg","category":"action","roundId":"217:702","sharpId":"117:757"},"243:3764":{"name":"Check Mark","searchTerms":["Done","Complete","check","Workcloud","WC"],"roundPath":"outputs/icons/action/check_mark_round.svg","sharpPath":"outputs/icons/action/check_mark_sharp.svg","category":"action","roundId":"217:685","sharpId":"117:755"},"243:3849":{"name":"Love","searchTerms":["Like","Fav","Favorite","Favourite"],"roundPath":"outputs/icons/action/love_round.svg","sharpPath":"outputs/icons/action/love_sharp.svg","category":"action","roundId":"223:1868","sharpId":"117:760"},"243:3850":{"name":"Love Outline","searchTerms":["Like","Fav","Favorite","Favourite"],"roundPath":"outputs/icons/action/love_outline_round.svg","sharpPath":"outputs/icons/action/love_outline_sharp.svg","category":"action","roundId":"223:1871","sharpId":"117:761"},"755:1928":{"name":"Unlock Alt","searchTerms":["Padlock","Unsafe"],"roundPath":"outputs/icons/action/unlock_alt_round.svg","sharpPath":"outputs/icons/action/unlock_alt_sharp.svg","category":"action","roundId":"755:1929","sharpId":"755:1932"},"243:3851":{"name":"Lock Alt","searchTerms":["Padlock","Safe","lock","security","Workcloud","WC"],"roundPath":"outputs/icons/action/lock_alt_round.svg","sharpPath":"outputs/icons/action/lock_alt_sharp.svg","category":"action","roundId":"223:1874","sharpId":"117:762"},"755:1950":{"name":"Unlock","searchTerms":["Padlock","Unsafe"],"roundPath":"outputs/icons/action/unlock_round.svg","sharpPath":"outputs/icons/action/unlock_sharp.svg","category":"action","roundId":"755:1951","sharpId":"755:1954"},"755:1941":{"name":"Lock","searchTerms":["Padlock","Safe"],"roundPath":"outputs/icons/action/lock_round.svg","sharpPath":"outputs/icons/action/lock_sharp.svg","category":"action","roundId":"755:1942","sharpId":"755:1945"},"243:3855":{"name":"World Action","searchTerms":["Language","Earth","Globe","global","Workcloud","WC"],"roundPath":"outputs/icons/action/world_action_round.svg","sharpPath":"outputs/icons/action/world_action_sharp.svg","category":"action","roundId":"223:1866","sharpId":"117:765"},"243:3858":{"name":"Filter","searchTerms":["filter","Workcloud","WC"],"roundPath":"outputs/icons/action/filter_round.svg","sharpPath":"outputs/icons/action/filter_sharp.svg","category":"action","roundId":"223:1865","sharpId":"117:768"},"755:1890":{"name":"Filter Alt","searchTerms":[""],"roundPath":"outputs/icons/action/filter_alt_round.svg","sharpPath":"outputs/icons/action/filter_alt_sharp.svg","category":"action","roundId":"755:1891","sharpId":"755:1894"},"243:3860":{"name":"Like","searchTerms":["Thumbs Up"],"roundPath":"outputs/icons/action/like_round.svg","sharpPath":"outputs/icons/action/like_sharp.svg","category":"action","roundId":"223:1863","sharpId":"117:770"},"243:3861":{"name":"Dislike","searchTerms":["Thumbs Down"],"roundPath":"outputs/icons/action/dislike_round.svg","sharpPath":"outputs/icons/action/dislike_sharp.svg","category":"action","roundId":"223:1862","sharpId":"133:514"},"243:4006":{"name":"Trending Up","searchTerms":["Success","Profit"],"roundPath":"outputs/icons/action/trending_up_round.svg","sharpPath":"outputs/icons/action/trending_up_sharp.svg","category":"action","roundId":"223:1888","sharpId":"117:786"},"243:4007":{"name":"Trending Down","searchTerms":["Failure","Loss"],"roundPath":"outputs/icons/action/trending_down_round.svg","sharpPath":"outputs/icons/action/trending_down_sharp.svg","category":"action","roundId":"223:1878","sharpId":"117:787"},"243:3857":{"name":"User Settings","searchTerms":["Account","ID","Identity","Cog","Gear"],"roundPath":"outputs/icons/action/user_settings_round.svg","sharpPath":"outputs/icons/action/user_settings_sharp.svg","category":"action","roundId":"223:1867","sharpId":"117:767"},"240:40":{"name":"User Circle","searchTerms":["Account","ID","Identity","profile","user","Workcloud","WC"],"roundPath":"outputs/icons/action/user_circle_round.svg","sharpPath":"outputs/icons/action/user_circle_sharp.svg","category":"action","roundId":"217:680","sharpId":"117:753"},"243:4008":{"name":"User","searchTerms":["Account","ID","Identity"],"roundPath":"outputs/icons/action/user_round.svg","sharpPath":"outputs/icons/action/user_sharp.svg","category":"action","roundId":"223:1895","sharpId":"117:788"},"243:4009":{"name":"History","searchTerms":["Watch","Time","Earlier","Previously","history","log","Workcloud","WC"],"roundPath":"outputs/icons/action/history_round.svg","sharpPath":"outputs/icons/action/history_sharp.svg","category":"action","roundId":"223:1892","sharpId":"117:789"},"243:4010":{"name":"Update","searchTerms":["Watch","Time","Later","update","Workcloud","WC"],"roundPath":"outputs/icons/action/update_round.svg","sharpPath":"outputs/icons/action/update_sharp.svg","category":"action","roundId":"223:1889","sharpId":"221:1768"},"243:4012":{"name":"Visibility","searchTerms":["See","Eye","view","preview","visibility","watch","Workcloud","WC"],"roundPath":"outputs/icons/action/visibility_round.svg","sharpPath":"outputs/icons/action/visibility_sharp.svg","category":"action","roundId":"223:1885","sharpId":"117:792"},"243:4013":{"name":"Visibility Off","searchTerms":["See","Hidden","Hide","Workcloud","WC"],"roundPath":"outputs/icons/action/visibility_off_round.svg","sharpPath":"outputs/icons/action/visibility_off_sharp.svg","category":"action","roundId":"223:1910","sharpId":"117:777"},"243:4014":{"name":"Clipboard Action","searchTerms":["Assignment","To do","List","Item"],"roundPath":"outputs/icons/action/clipboard_action_round.svg","sharpPath":"outputs/icons/action/clipboard_action_sharp.svg","category":"action","roundId":"223:1899","sharpId":"117:794"},"243:4018":{"name":"Pin","searchTerms":["Place","Location","Pin","Location","mark","here","Workcloud","WC"],"roundPath":"outputs/icons/action/pin_round.svg","sharpPath":"outputs/icons/action/pin_sharp.svg","category":"action","roundId":"223:1890","sharpId":"117:799"},"243:4019":{"name":"Renew","searchTerms":["Refresh","Reload","Loop"],"roundPath":"outputs/icons/action/renew_round.svg","sharpPath":"outputs/icons/action/renew_sharp.svg","category":"action","roundId":"223:1919","sharpId":"117:800"},"755:1965":{"name":"Sync Action","searchTerms":["Refresh","Reload","Loop","sync","synchronize"],"roundPath":"outputs/icons/action/sync_action_round.svg","sharpPath":"outputs/icons/action/sync_action_sharp.svg","category":"action","roundId":"755:1966","sharpId":"755:1969"},"243:4020":{"name":"Delete Forever","searchTerms":["Trash","Bin"],"roundPath":"outputs/icons/action/delete_forever_round.svg","sharpPath":"outputs/icons/action/delete_forever_sharp.svg","category":"action","roundId":"223:1916","sharpId":"117:801"},"243:4021":{"name":"Build","searchTerms":["Wrench"],"roundPath":"outputs/icons/action/build_round.svg","sharpPath":"outputs/icons/action/build_sharp.svg","category":"action","roundId":"223:1897","sharpId":"117:802"},"243:4022":{"name":"Alarm","searchTerms":["Watch","Time"],"roundPath":"outputs/icons/action/alarm_round.svg","sharpPath":"outputs/icons/action/alarm_sharp.svg","category":"action","roundId":"223:1896","sharpId":"117:804"},"243:4023":{"name":"Bookmark","searchTerms":["Remind","Reminder"],"roundPath":"outputs/icons/action/bookmark_round.svg","sharpPath":"outputs/icons/action/bookmark_sharp.svg","category":"action","roundId":"223:1880","sharpId":"117:805"},"243:4024":{"name":"Bookmark Outline","searchTerms":["Remind","Reminder"],"roundPath":"outputs/icons/action/bookmark_outline_round.svg","sharpPath":"outputs/icons/action/bookmark_outline_sharp.svg","category":"action","roundId":"223:1879","sharpId":"117:806"},"243:4026":{"name":"AR","searchTerms":["Augmented","Reality","Cube","3D"],"roundPath":"outputs/icons/action/ar_round.svg","sharpPath":"outputs/icons/action/ar_sharp.svg","category":"action","roundId":"223:1901","sharpId":"117:808"},"243:4158":{"name":"Cached","searchTerms":[""],"roundPath":"outputs/icons/action/cached_round.svg","sharpPath":"outputs/icons/action/cached_sharp.svg","category":"action","roundId":"223:1912","sharpId":"117:807"},"243:4159":{"name":"Document","searchTerms":[""],"roundPath":"outputs/icons/action/document_round.svg","sharpPath":"outputs/icons/action/document_sharp.svg","category":"action","roundId":"223:1907","sharpId":"117:773"},"243:4170":{"name":"Pending","searchTerms":["Waiting","More","Circle","Dots"],"roundPath":"outputs/icons/action/pending_round.svg","sharpPath":"outputs/icons/action/pending_sharp.svg","category":"action","roundId":"223:1906","sharpId":"117:784"},"243:4175":{"name":"Open In Full","searchTerms":[""],"roundPath":"outputs/icons/action/open_in_full_round.svg","sharpPath":"outputs/icons/action/open_in_full_sharp.svg","category":"action","roundId":"223:1920","sharpId":"117:811"},"243:4171":{"name":"Label","searchTerms":["Tag"],"roundPath":"outputs/icons/action/label_round.svg","sharpPath":"outputs/icons/action/label_sharp.svg","category":"action","roundId":"223:1903","sharpId":"133:510"},"243:4169":{"name":"Price","searchTerms":["Paid","Money","Dollar"],"roundPath":"outputs/icons/action/price_round.svg","sharpPath":"outputs/icons/action/price_sharp.svg","category":"action","roundId":"223:1921","sharpId":"117:783"},"243:4174":{"name":"Open In New Window","searchTerms":["Launch","Tab","file","export","open in new","open","Workcloud","WC"],"roundPath":"outputs/icons/action/open_in_new_window_round.svg","sharpPath":"outputs/icons/action/open_in_new_window_sharp.svg","category":"action","roundId":"223:1908","sharpId":"117:810"},"243:4167":{"name":"Delete Outline","searchTerms":["Trash","Bin"],"roundPath":"outputs/icons/action/delete_outline_round.svg","sharpPath":"outputs/icons/action/delete_outline_sharp.svg","category":"action","roundId":"217:706","sharpId":"117:759"},"243:4164":{"name":"Security Check","searchTerms":["Verify","Verified","Shield","badge","title","status","Workcloud","WC"],"roundPath":"outputs/icons/action/security_check_round.svg","sharpPath":"outputs/icons/action/security_check_sharp.svg","category":"action","roundId":"223:1887","sharpId":"117:793"},"243:3854":{"name":"Clock Outline","searchTerms":["Watch","Time","clock","shift","specific time","Workcloud","WC"],"roundPath":"outputs/icons/action/clock_outline_round.svg","sharpPath":"outputs/icons/action/clock_outline_sharp.svg","category":"action","roundId":"223:1873","sharpId":"117:764"},"243:4165":{"name":"Clock","searchTerms":["Watch","Time","Circle"],"roundPath":"outputs/icons/action/clock_round.svg","sharpPath":"outputs/icons/action/clock_sharp.svg","category":"action","roundId":"223:1886","sharpId":"117:812"},"755:1821":{"name":"Upload","searchTerms":["Get","file","upload","document","Workcloud","WC"],"roundPath":"outputs/icons/action/upload_round.svg","sharpPath":"outputs/icons/action/upload_sharp.svg","category":"action","roundId":"755:1822","sharpId":"755:1825"},"243:4172":{"name":"Download","searchTerms":["Get","download","file","document","Workcloud","WC"],"roundPath":"outputs/icons/action/download_round.svg","sharpPath":"outputs/icons/action/download_sharp.svg","category":"action","roundId":"223:1900","sharpId":"117:809"},"243:4166":{"name":"Delete","searchTerms":["Trash","Bin","delete","remove","empty","Workcloud","WC"],"roundPath":"outputs/icons/action/delete_round.svg","sharpPath":"outputs/icons/action/delete_sharp.svg","category":"action","roundId":"217:701","sharpId":"117:758"},"243:4161":{"name":"Log Out","searchTerms":["Logout","Exit","signout","sign out","sign-out","log out","log-out","logoff","log off","log-off","Workcloud","WC"],"roundPath":"outputs/icons/action/log_out_round.svg","sharpPath":"outputs/icons/action/log_out_sharp.svg","category":"action","roundId":"223:1902","sharpId":"117:774"},"243:4162":{"name":"Log In","searchTerms":["Login","Entry"],"roundPath":"outputs/icons/action/log_in_round.svg","sharpPath":"outputs/icons/action/log_in_sharp.svg","category":"action","roundId":"223:1913","sharpId":"117:775"},"243:4176":{"name":"Zoom In","searchTerms":[""],"roundPath":"outputs/icons/action/zoom_in_round.svg","sharpPath":"outputs/icons/action/zoom_in_sharp.svg","category":"action","roundId":"223:1914","sharpId":"117:813"},"243:4177":{"name":"Zoom Out","searchTerms":[""],"roundPath":"outputs/icons/action/zoom_out_round.svg","sharpPath":"outputs/icons/action/zoom_out_sharp.svg","category":"action","roundId":"223:1884","sharpId":"117:814"},"243:4178":{"name":"Touch","searchTerms":["App","Interact","With","Finger","Zone","action","touch","tap","Workcloud","WC"],"roundPath":"outputs/icons/action/touch_round.svg","sharpPath":"outputs/icons/action/touch_sharp.svg","category":"action","roundId":"223:1909","sharpId":"133:502"},"755:1843":{"name":"Hand","searchTerms":["Raise","Interact","Finger"],"roundPath":"outputs/icons/action/hand_round.svg","sharpPath":"outputs/icons/action/hand_sharp.svg","category":"action","roundId":"755:1844","sharpId":"755:1847"},"243:4252":{"name":"Credit Card","searchTerms":["Payment"],"roundPath":"outputs/icons/action/credit_card_round.svg","sharpPath":"outputs/icons/action/credit_card_sharp.svg","category":"action","roundId":"223:1911","sharpId":"117:790"},"243:4249":{"name":"Calendar Range","searchTerms":["Date","Dates","Span","Trade","shift trade","calendar","swap","switch","Workcloud","WC"],"roundPath":"outputs/icons/action/calendar_range_round.svg","sharpPath":"outputs/icons/action/calendar_range_sharp.svg","category":"action","roundId":"223:1877","sharpId":"133:411"},"787:1859":{"name":"Calendar Yearly","searchTerms":["Date","Year","365","calendar","yearly","annual","Workcloud","WC"],"roundPath":"outputs/icons/action/calendar_yearly_round.svg","sharpPath":"outputs/icons/action/calendar_yearly_sharp.svg","category":"action","roundId":"787:1860","sharpId":"787:1866"},"787:1816":{"name":"Calendar Monthly","searchTerms":["Date","Month","calendar","monthly","Workcloud","WC"],"roundPath":"outputs/icons/action/calendar_monthly_round.svg","sharpPath":"outputs/icons/action/calendar_monthly_sharp.svg","category":"action","roundId":"787:1817","sharpId":"787:1822"},"787:1797":{"name":"Calendar Weekly","searchTerms":["Date","Week","calendar","weekly"],"roundPath":"outputs/icons/action/calendar_weekly_round.svg","sharpPath":"outputs/icons/action/calendar_weekly_sharp.svg","category":"action","roundId":"787:1798","sharpId":"787:1803"},"243:4245":{"name":"Calendar 3 Day","searchTerms":["Date","Dates","calendar","three","3-day","3 day","Workcloud","WC"],"roundPath":"outputs/icons/action/calendar_3_day_round.svg","sharpPath":"outputs/icons/action/calendar_3_day_sharp.svg","category":"action","roundId":"223:1904","sharpId":"117:779"},"787:1772":{"name":"Calendar Day","searchTerms":["Date","Marked","calendar","day","daily view","Workcloud","WC"],"roundPath":"outputs/icons/action/calendar_day_round.svg","sharpPath":"outputs/icons/action/calendar_day_sharp.svg","category":"action","roundId":"787:1773","sharpId":"787:1776"},"243:4246":{"name":"Calendar Alt 2","searchTerms":["Date","Marked","Event","Today","Appointment","Meeting","calendar","schedule"],"roundPath":"outputs/icons/action/calendar_alt_2_round.svg","sharpPath":"outputs/icons/action/calendar_alt_2_sharp.svg","category":"action","roundId":"223:1918","sharpId":"117:769"},"787:1746":{"name":"Calendar Alt 1","searchTerms":["Date","Marked","Event","Today","Appointment","Meeting","calendar","schedule","Workcloud","WC"],"roundPath":"outputs/icons/action/calendar_alt_1_round.svg","sharpPath":"outputs/icons/action/calendar_alt_1_sharp.svg","category":"action","roundId":"787:1747","sharpId":"787:1750"},"243:4181":{"name":"Calendar","searchTerms":["Date","Appointment","Meeting","calendar","schedule","Workcloud","WC"],"roundPath":"outputs/icons/action/calendar_round.svg","sharpPath":"outputs/icons/action/calendar_sharp.svg","category":"action","roundId":"223:1922","sharpId":"117:772"},"243:4179":{"name":"Verified","searchTerms":["Checked","Success"],"roundPath":"outputs/icons/action/verified_round.svg","sharpPath":"outputs/icons/action/verified_sharp.svg","category":"action","roundId":"223:1915","sharpId":"117:771"},"4914:1820":{"name":"Calendar Unavailable","searchTerms":["Workcloud","WC","calendar","unavailable","cancel","absence","absent","delete","schedule not mapped"],"roundPath":"outputs/icons/action/calendar_unavailable_round.svg","sharpPath":"outputs/icons/action/calendar_unavailable_sharp.svg","category":"action","roundId":"4932:3378","sharpId":"4932:3380"},"4914:1860":{"name":"Calendar Available","searchTerms":[""],"roundPath":"outputs/icons/action/calendar_available_round.svg","sharpPath":"outputs/icons/action/calendar_available_sharp.svg","category":"action","roundId":"4932:3373","sharpId":"4932:3376"},"4914:1914":{"name":"Calendar Edit","searchTerms":[""],"roundPath":"outputs/icons/action/calendar_edit_round.svg","sharpPath":"outputs/icons/action/calendar_edit_sharp.svg","category":"action","roundId":"4405:596","sharpId":"4914:1915"},"257:1125":{"name":"iOS Share","searchTerms":["Apple","file","share","export","Workcloud","WC"],"roundPath":"outputs/icons/action/ios_share_round.svg","sharpPath":"outputs/icons/action/ios_share_sharp.svg","category":"action","roundId":"231:5370","sharpId":"122:378"},"257:1130":{"name":"Share","searchTerms":["share","social","file","Workcloud","WC"],"roundPath":"outputs/icons/action/share_round.svg","sharpPath":"outputs/icons/action/share_sharp.svg","category":"action","roundId":"231:5353","sharpId":"122:369"},"257:944":{"name":"Play","searchTerms":["Play","Start"],"roundPath":"outputs/icons/audio_video/play_round.svg","sharpPath":"outputs/icons/audio_video/play_sharp.svg","category":"audio_video","roundId":"231:5138","sharpId":"124:1163"},"257:945":{"name":"Play Circle","searchTerms":["Play Filled"],"roundPath":"outputs/icons/audio_video/play_circle_round.svg","sharpPath":"outputs/icons/audio_video/play_circle_sharp.svg","category":"audio_video","roundId":"231:5136","sharpId":"124:1159"},"257:946":{"name":"Play Outline","searchTerms":["Play Outline"],"roundPath":"outputs/icons/audio_video/play_outline_round.svg","sharpPath":"outputs/icons/audio_video/play_outline_sharp.svg","category":"audio_video","roundId":"231:5134","sharpId":"124:1157"},"257:947":{"name":"Stop Circle","searchTerms":["Stop"],"roundPath":"outputs/icons/audio_video/stop_circle_round.svg","sharpPath":"outputs/icons/audio_video/stop_circle_sharp.svg","category":"audio_video","roundId":"231:5124","sharpId":"124:1155"},"257:948":{"name":"Pause Circle","searchTerms":["Pause"],"roundPath":"outputs/icons/audio_video/pause_circle_round.svg","sharpPath":"outputs/icons/audio_video/pause_circle_sharp.svg","category":"audio_video","roundId":"231:5130","sharpId":"124:1172"},"257:949":{"name":"Stop","searchTerms":["Stop","Workcloud","WC"],"roundPath":"outputs/icons/audio_video/stop_round.svg","sharpPath":"outputs/icons/audio_video/stop_sharp.svg","category":"audio_video","roundId":"231:5125","sharpId":"124:1156"},"257:950":{"name":"Pause","searchTerms":["Pause","Workcloud","WC"],"roundPath":"outputs/icons/audio_video/pause_round.svg","sharpPath":"outputs/icons/audio_video/pause_sharp.svg","category":"audio_video","roundId":"231:5129","sharpId":"124:1160"},"257:951":{"name":"Fast Forward","searchTerms":[""],"roundPath":"outputs/icons/audio_video/fast_forward_round.svg","sharpPath":"outputs/icons/audio_video/fast_forward_sharp.svg","category":"audio_video","roundId":"231:5122","sharpId":"124:1165"},"257:952":{"name":"Fast Rewind","searchTerms":["Back\n"],"roundPath":"outputs/icons/audio_video/fast_rewind_round.svg","sharpPath":"outputs/icons/audio_video/fast_rewind_sharp.svg","category":"audio_video","roundId":"231:5120","sharpId":"124:1171"},"257:953":{"name":"Skip Next","searchTerms":["Skip","end","Workcloud","WC"],"roundPath":"outputs/icons/audio_video/skip_next_round.svg","sharpPath":"outputs/icons/audio_video/skip_next_sharp.svg","category":"audio_video","roundId":"231:5127","sharpId":"124:1170"},"257:954":{"name":"Skip Previous","searchTerms":["Skip"],"roundPath":"outputs/icons/audio_video/skip_previous_round.svg","sharpPath":"outputs/icons/audio_video/skip_previous_sharp.svg","category":"audio_video","roundId":"231:5126","sharpId":"124:1169"},"257:955":{"name":"Volume Down","searchTerms":["Decrease","Lower"],"roundPath":"outputs/icons/audio_video/volume_down_round.svg","sharpPath":"outputs/icons/audio_video/volume_down_sharp.svg","category":"audio_video","roundId":"231:5140","sharpId":"124:1152"},"257:956":{"name":"Volume Mute","searchTerms":["Mute"],"roundPath":"outputs/icons/audio_video/volume_mute_round.svg","sharpPath":"outputs/icons/audio_video/volume_mute_sharp.svg","category":"audio_video","roundId":"231:5123","sharpId":"124:1151"},"257:958":{"name":"Volume Off","searchTerms":["Mute","No","audio-off","sound-off","volume-off","Workcloud","WC"],"roundPath":"outputs/icons/audio_video/volume_off_round.svg","sharpPath":"outputs/icons/audio_video/volume_off_sharp.svg","category":"audio_video","roundId":"231:5141","sharpId":"124:1164"},"257:959":{"name":"Volume Up","searchTerms":["Increase","Higher","audio","sound","volume","Workcloud","WC"],"roundPath":"outputs/icons/audio_video/volume_up_round.svg","sharpPath":"outputs/icons/audio_video/volume_up_sharp.svg","category":"audio_video","roundId":"231:5121","sharpId":"124:1150"},"257:960":{"name":"Microphone","searchTerms":["Voice","Speaker","mic","microphone","talk","Workcloud","WC"],"roundPath":"outputs/icons/audio_video/microphone_round.svg","sharpPath":"outputs/icons/audio_video/microphone_sharp.svg","category":"audio_video","roundId":"231:5139","sharpId":"124:1158"},"257:961":{"name":"Microphone Outline","searchTerms":["Voice","Speaker","mic","microphone","voice","talk"],"roundPath":"outputs/icons/audio_video/microphone_outline_round.svg","sharpPath":"outputs/icons/audio_video/microphone_outline_sharp.svg","category":"audio_video","roundId":"231:5137","sharpId":"124:1166"},"257:962":{"name":"Microphone Off","searchTerms":["Mute","Voice","Speaker Mute","Mute voice","Mute mic","Workcloud","WC"],"roundPath":"outputs/icons/audio_video/microphone_off_round.svg","sharpPath":"outputs/icons/audio_video/microphone_off_sharp.svg","category":"audio_video","roundId":"231:5135","sharpId":"124:1154"},"257:964":{"name":"Replay","searchTerms":["Restart","Refresh"],"roundPath":"outputs/icons/audio_video/replay_round.svg","sharpPath":"outputs/icons/audio_video/replay_sharp.svg","category":"audio_video","roundId":"231:5128","sharpId":"124:1167"},"257:966":{"name":"Closed Caption","searchTerms":["Subtitle"],"roundPath":"outputs/icons/audio_video/closed_caption_round.svg","sharpPath":"outputs/icons/audio_video/closed_caption_sharp.svg","category":"audio_video","roundId":"231:5132","sharpId":"124:1173"},"257:968":{"name":"Video Camera","searchTerms":["VIdeo","Cam","Camcorder"],"roundPath":"outputs/icons/audio_video/video_camera_round.svg","sharpPath":"outputs/icons/audio_video/video_camera_sharp.svg","category":"audio_video","roundId":"231:5143","sharpId":"124:1153"},"259:1737":{"name":"Camera","searchTerms":["Photo","Image","camera","picture","Workcloud","WC"],"roundPath":"outputs/icons/image/camera_round.svg","sharpPath":"outputs/icons/image/camera_sharp.svg","category":"image","roundId":"238:2752","sharpId":"124:530"},"259:1741":{"name":"Camera Switch Image","searchTerms":["camera","photo","picture","flip"],"roundPath":"outputs/icons/image/camera_switch_image_round.svg","sharpPath":"outputs/icons/image/camera_switch_image_sharp.svg","category":"image","roundId":"238:2764","sharpId":"133:345"},"259:1743":{"name":"Camera Shutter","searchTerms":[""],"roundPath":"outputs/icons/image/camera_shutter_round.svg","sharpPath":"outputs/icons/image/camera_shutter_sharp.svg","category":"image","roundId":"238:2761","sharpId":"124:546"},"259:1744":{"name":"Image Library","searchTerms":["Collection","Set"],"roundPath":"outputs/icons/image/image_library_round.svg","sharpPath":"outputs/icons/image/image_library_sharp.svg","category":"image","roundId":"238:2759","sharpId":"124:543"},"259:1745":{"name":"Image","searchTerms":["Photo","Workcloud","WC"],"roundPath":"outputs/icons/image/image_round.svg","sharpPath":"outputs/icons/image/image_sharp.svg","category":"image","roundId":"238:2763","sharpId":"124:538"},"259:1746":{"name":"Eye Dropper","searchTerms":["Color","Colorize","Colorise","Pick","Sample"],"roundPath":"outputs/icons/image/eye_dropper_round.svg","sharpPath":"outputs/icons/image/eye_dropper_sharp.svg","category":"image","roundId":"238:2757","sharpId":"124:540"},"259:1747":{"name":"Contrast Image","searchTerms":[""],"roundPath":"outputs/icons/image/contrast_image_round.svg","sharpPath":"outputs/icons/image/contrast_image_sharp.svg","category":"image","roundId":"238:2747","sharpId":"124:539"},"259:1749":{"name":"Portrait","searchTerms":["Picture","Mode"],"roundPath":"outputs/icons/image/portrait_round.svg","sharpPath":"outputs/icons/image/portrait_sharp.svg","category":"image","roundId":"238:2758","sharpId":"124:545"},"1103:2965":{"name":"HDR","searchTerms":["Picture","Mode"],"roundPath":"outputs/icons/image/hdr_round.svg","sharpPath":"outputs/icons/image/hdr_sharp.svg","category":"image","roundId":"1103:2966","sharpId":"1103:2969"},"259:1750":{"name":"Rotate Left","searchTerms":[""],"roundPath":"outputs/icons/image/rotate_left_round.svg","sharpPath":"outputs/icons/image/rotate_left_sharp.svg","category":"image","roundId":"238:2760","sharpId":"124:541"},"755:1643":{"name":"Rotate Right","searchTerms":[""],"roundPath":"outputs/icons/image/rotate_right_round.svg","sharpPath":"outputs/icons/image/rotate_right_sharp.svg","category":"image","roundId":"755:1644","sharpId":"755:1647"},"259:1751":{"name":"Slide Show","searchTerms":["Presentation"],"roundPath":"outputs/icons/image/slide_show_round.svg","sharpPath":"outputs/icons/image/slide_show_sharp.svg","category":"image","roundId":"238:2750","sharpId":"124:536"},"259:1752":{"name":"Straighten","searchTerms":["Ruler"],"roundPath":"outputs/icons/image/straighten_round.svg","sharpPath":"outputs/icons/image/straighten_sharp.svg","category":"image","roundId":"238:2749","sharpId":"124:534"},"259:1753":{"name":"Adjustments","searchTerms":["settings","tune","configuration","settings","tune","configuration","Workcloud","WC"],"roundPath":"outputs/icons/image/adjustments_round.svg","sharpPath":"outputs/icons/image/adjustments_sharp.svg","category":"image","roundId":"238:2748","sharpId":"124:531"},"259:1754":{"name":"Crop","searchTerms":[""],"roundPath":"outputs/icons/image/crop_round.svg","sharpPath":"outputs/icons/image/crop_sharp.svg","category":"image","roundId":"238:2762","sharpId":"124:544"},"1104:2992":{"name":"PRO","searchTerms":["Picture","Mode"],"roundPath":"outputs/icons/image/pro_round.svg","sharpPath":"outputs/icons/image/pro_sharp.svg","category":"image","roundId":"1104:2993","sharpId":"1104:2996"},"1105:3170":{"name":"AUTO","searchTerms":["Picture","Mode"],"roundPath":"outputs/icons/image/auto_round.svg","sharpPath":"outputs/icons/image/auto_sharp.svg","category":"image","roundId":"1105:3171","sharpId":"1105:3177"},"1106:3211":{"name":"ISO","searchTerms":["Picture","Mode"],"roundPath":"outputs/icons/image/iso_round.svg","sharpPath":"outputs/icons/image/iso_sharp.svg","category":"image","roundId":"1106:3212","sharpId":"1106:3219"},"1106:3241":{"name":"WB","searchTerms":["Picture","Mode","White","Balance"],"roundPath":"outputs/icons/image/wb_round.svg","sharpPath":"outputs/icons/image/wb_sharp.svg","category":"image","roundId":"1106:3242","sharpId":"1106:3245"},"1108:3291":{"name":"AWB","searchTerms":["Picture","Mode","Auto","White","Balance"],"roundPath":"outputs/icons/image/awb_round.svg","sharpPath":"outputs/icons/image/awb_sharp.svg","category":"image","roundId":"1108:3292","sharpId":"1108:3297"},"1107:3271":{"name":"WB Image","searchTerms":["Picture","Mode"],"roundPath":"outputs/icons/image/wb_image_round.svg","sharpPath":"outputs/icons/image/wb_image_sharp.svg","category":"image","roundId":"1107:3272","sharpId":"1107:3277"},"259:1756":{"name":"Grid On","searchTerms":[""],"roundPath":"outputs/icons/image/grid_on_round.svg","sharpPath":"outputs/icons/image/grid_on_sharp.svg","category":"image","roundId":"238:2753","sharpId":"124:533"},"259:1757":{"name":"Grid Off","searchTerms":[""],"roundPath":"outputs/icons/image/grid_off_round.svg","sharpPath":"outputs/icons/image/grid_off_sharp.svg","category":"image","roundId":"238:2745","sharpId":"124:537"},"259:1758":{"name":"Timer","searchTerms":["Countdown"],"roundPath":"outputs/icons/image/timer_round.svg","sharpPath":"outputs/icons/image/timer_sharp.svg","category":"image","roundId":"238:2746","sharpId":"124:532"},"243:4810":{"name":"Apps","searchTerms":["3x3","menu","dashboard","grid","Workcloud","WC"],"roundPath":"outputs/icons/navigation/apps_round.svg","sharpPath":"outputs/icons/navigation/apps_sharp.svg","category":"navigation","roundId":"225:2888","sharpId":"117:978"},"652:1635":{"name":"Columns","searchTerms":["Table"],"roundPath":"outputs/icons/navigation/columns_round.svg","sharpPath":"outputs/icons/navigation/columns_sharp.svg","category":"navigation","roundId":"652:1636","sharpId":"652:1639"},"243:4812":{"name":"Cancel","searchTerms":["Close","X","cancel","exit","delete","remove"],"roundPath":"outputs/icons/navigation/cancel_round.svg","sharpPath":"outputs/icons/navigation/cancel_sharp.svg","category":"navigation","roundId":"225:2893","sharpId":"117:964"},"243:4814":{"name":"Drop Down Circle","searchTerms":["Arrow","Triangle"],"roundPath":"outputs/icons/navigation/drop_down_circle_round.svg","sharpPath":"outputs/icons/navigation/drop_down_circle_sharp.svg","category":"navigation","roundId":"225:2877","sharpId":"117:968"},"243:4815":{"name":"Close","searchTerms":["X","close","cancel","X","exit","delete","remove","Workcloud","WC"],"roundPath":"outputs/icons/navigation/close_round.svg","sharpPath":"outputs/icons/navigation/close_sharp.svg","category":"navigation","roundId":"225:2884","sharpId":"117:962"},"243:4817":{"name":"More Vertical","searchTerms":["menu","dot","3-dot","3 dot","vertical","more","Workcloud","WC"],"roundPath":"outputs/icons/navigation/more_vertical_round.svg","sharpPath":"outputs/icons/navigation/more_vertical_sharp.svg","category":"navigation","roundId":"225:2882","sharpId":"117:956"},"243:4818":{"name":"More Horizontal","searchTerms":["menu","dot","3-dot","3 dot","horizontal","more","Workcloud","WC"],"roundPath":"outputs/icons/navigation/more_horizontal_round.svg","sharpPath":"outputs/icons/navigation/more_horizontal_sharp.svg","category":"navigation","roundId":"225:2873","sharpId":"117:957"},"243:4819":{"name":"Chevron Left","searchTerms":["Arrow","chevron","left","Workcloud","WC"],"roundPath":"outputs/icons/navigation/chevron_left_round.svg","sharpPath":"outputs/icons/navigation/chevron_left_sharp.svg","category":"navigation","roundId":"225:2895","sharpId":"117:977"},"243:4820":{"name":"Chevron Right","searchTerms":["Arrow","chevron","right","Workcloud","WC"],"roundPath":"outputs/icons/navigation/chevron_right_round.svg","sharpPath":"outputs/icons/navigation/chevron_right_sharp.svg","category":"navigation","roundId":"225:2890","sharpId":"117:966"},"243:4821":{"name":"Expand Less","searchTerms":["Arrow","chevron","up","Workcloud","WC"],"roundPath":"outputs/icons/navigation/expand_less_round.svg","sharpPath":"outputs/icons/navigation/expand_less_sharp.svg","category":"navigation","roundId":"225:2887","sharpId":"117:961"},"243:4822":{"name":"Expand More","searchTerms":["Arrow","chevon","down","Workcloud","WC"],"roundPath":"outputs/icons/navigation/expand_more_round.svg","sharpPath":"outputs/icons/navigation/expand_more_sharp.svg","category":"navigation","roundId":"225:2894","sharpId":"117:960"},"243:4823":{"name":"Caret Down","searchTerms":["Triangle"],"roundPath":"outputs/icons/navigation/caret_down_round.svg","sharpPath":"outputs/icons/navigation/caret_down_sharp.svg","category":"navigation","roundId":"225:2878","sharpId":"117:970"},"243:4824":{"name":"Caret Up","searchTerms":["Triangle"],"roundPath":"outputs/icons/navigation/caret_up_round.svg","sharpPath":"outputs/icons/navigation/caret_up_sharp.svg","category":"navigation","roundId":"225:2876","sharpId":"117:971"},"243:4825":{"name":"Caret Left","searchTerms":["Triangle"],"roundPath":"outputs/icons/navigation/caret_left_round.svg","sharpPath":"outputs/icons/navigation/caret_left_sharp.svg","category":"navigation","roundId":"225:2875","sharpId":"117:973"},"243:4826":{"name":"Caret Right","searchTerms":["Triangle"],"roundPath":"outputs/icons/navigation/caret_right_round.svg","sharpPath":"outputs/icons/navigation/caret_right_sharp.svg","category":"navigation","roundId":"225:2874","sharpId":"117:965"},"243:4827":{"name":"Full Screen Exit","searchTerms":["fullscreen","minimize","shrink","exit","Workcloud","WC"],"roundPath":"outputs/icons/navigation/full_screen_exit_round.svg","sharpPath":"outputs/icons/navigation/full_screen_exit_sharp.svg","category":"navigation","roundId":"225:2891","sharpId":"117:958"},"243:4829":{"name":"Full Screen","searchTerms":["fullscreen","enlarge","maximize","Workcloud","WC"],"roundPath":"outputs/icons/navigation/full_screen_round.svg","sharpPath":"outputs/icons/navigation/full_screen_sharp.svg","category":"navigation","roundId":"225:2880","sharpId":"117:959"},"243:4830":{"name":"Hamburger Menu","searchTerms":["menu","hamburger","line","Workcloud","WC"],"roundPath":"outputs/icons/navigation/hamburger_menu_round.svg","sharpPath":"outputs/icons/navigation/hamburger_menu_sharp.svg","category":"navigation","roundId":"225:2879","sharpId":"117:976"},"662:1869":{"name":"Hamburger Menu Thick","searchTerms":[""],"roundPath":"outputs/icons/navigation/hamburger_menu_thick_round.svg","sharpPath":"outputs/icons/navigation/hamburger_menu_thick_sharp.svg","category":"navigation","roundId":"662:1870","sharpId":"662:1873"},"662:1862":{"name":"Hamburger Menu Navigation Rail","searchTerms":["Narrow","Squeeze","Small"],"roundPath":"outputs/icons/navigation/hamburger_menu_navigation_rail_round.svg","sharpPath":"outputs/icons/navigation/hamburger_menu_navigation_rail_sharp.svg","category":"navigation","roundId":"662:1863","sharpId":"662:1866"},"243:4831":{"name":"Refresh","searchTerms":["Reload","refresh","turnover","Workcloud","WC"],"roundPath":"outputs/icons/navigation/refresh_round.svg","sharpPath":"outputs/icons/navigation/refresh_sharp.svg","category":"navigation","roundId":"225:2889","sharpId":"117:969"},"247:572":{"name":"Arrow Up","searchTerms":[""],"roundPath":"outputs/icons/navigation/arrow_up_round.svg","sharpPath":"outputs/icons/navigation/arrow_up_sharp.svg","category":"navigation","roundId":"225:2883","sharpId":"117:975"},"247:570":{"name":"Arrow Forward","searchTerms":["Right","arrow","forward","next","Workcloud","WC"],"roundPath":"outputs/icons/navigation/arrow_forward_round.svg","sharpPath":"outputs/icons/navigation/arrow_forward_sharp.svg","category":"navigation","roundId":"225:2885","sharpId":"117:967"},"247:571":{"name":"Arrow Down","searchTerms":[""],"roundPath":"outputs/icons/navigation/arrow_down_round.svg","sharpPath":"outputs/icons/navigation/arrow_down_sharp.svg","category":"navigation","roundId":"247:566","sharpId":"117:972"},"243:4858":{"name":"Arrow Back","searchTerms":["Left","arrow","back","previous","Workcloud","WC"],"roundPath":"outputs/icons/navigation/arrow_back_round.svg","sharpPath":"outputs/icons/navigation/arrow_back_sharp.svg","category":"navigation","roundId":"225:2892","sharpId":"117:974"},"316:1649":{"name":"Unfold More","searchTerms":[""],"roundPath":"outputs/icons/navigation/unfold_more_round.svg","sharpPath":"outputs/icons/navigation/unfold_more_sharp.svg","category":"navigation","roundId":"316:1641","sharpId":"316:1627"},"316:1650":{"name":"Unfold Less","searchTerms":[""],"roundPath":"outputs/icons/navigation/unfold_less_round.svg","sharpPath":"outputs/icons/navigation/unfold_less_sharp.svg","category":"navigation","roundId":"316:1642","sharpId":"316:1626"},"474:1634":{"name":"Caret Sort","searchTerms":[""],"roundPath":"outputs/icons/navigation/caret_sort_round.svg","sharpPath":"outputs/icons/navigation/caret_sort_sharp.svg","category":"navigation","roundId":"474:1635","sharpId":"474:1638"},"550:1640":{"name":"First Page","searchTerms":["Beginning"],"roundPath":"outputs/icons/navigation/first_page_round.svg","sharpPath":"outputs/icons/navigation/first_page_sharp.svg","category":"navigation","roundId":"550:1639","sharpId":"550:1638"},"550:1637":{"name":"Last Page","searchTerms":["End"],"roundPath":"outputs/icons/navigation/last_page_round.svg","sharpPath":"outputs/icons/navigation/last_page_sharp.svg","category":"navigation","roundId":"550:1635","sharpId":"550:1636"},"645:1661":{"name":"Dashboard","searchTerms":["dashboard","Workcloud","WC"],"roundPath":"outputs/icons/navigation/dashboard_round.svg","sharpPath":"outputs/icons/navigation/dashboard_sharp.svg","category":"navigation","roundId":"645:1662","sharpId":"645:1665"},"243:3768":{"name":"Cancel Outline","searchTerms":["Close","X"],"roundPath":"outputs/icons/navigation/cancel_outline_round.svg","sharpPath":"outputs/icons/navigation/cancel_outline_sharp.svg","category":"navigation","roundId":"223:1870","sharpId":"117:780"},"243:3859":{"name":"List Alt","searchTerms":[""],"roundPath":"outputs/icons/navigation/list_alt_round.svg","sharpPath":"outputs/icons/navigation/list_alt_sharp.svg","category":"navigation","roundId":"223:1872","sharpId":"117:803"},"243:4163":{"name":"List","searchTerms":["list","details","information","Workcloud","WC"],"roundPath":"outputs/icons/navigation/list_round.svg","sharpPath":"outputs/icons/navigation/list_sharp.svg","category":"navigation","roundId":"223:1905","sharpId":"117:776"},"243:3856":{"name":"Help Outline","searchTerms":["Question","Mark"],"roundPath":"outputs/icons/navigation/help_outline_round.svg","sharpPath":"outputs/icons/navigation/help_outline_sharp.svg","category":"navigation","roundId":"223:1869","sharpId":"117:766"},"243:4168":{"name":"Help","searchTerms":["Question","Mark","help","question","info","Workcloud","WC"],"roundPath":"outputs/icons/navigation/help_round.svg","sharpPath":"outputs/icons/navigation/help_sharp.svg","category":"navigation","roundId":"223:1893","sharpId":"117:781"},"250:723":{"name":"Add","searchTerms":["Plus","add","create","request"],"roundPath":"outputs/icons/content/add_round.svg","sharpPath":"outputs/icons/content/add_sharp.svg","category":"content","roundId":"225:3326","sharpId":"122:148"},"250:714":{"name":"Sort Content","searchTerms":["sort","reorder"],"roundPath":"outputs/icons/content/sort_content_round.svg","sharpPath":"outputs/icons/content/sort_content_sharp.svg","category":"content","roundId":"225:3316","sharpId":"122:145"},"250:710":{"name":"Content","searchTerms":["duplicate","copy","clipboard","Workcloud","WC"],"roundPath":"outputs/icons/content/content_round.svg","sharpPath":"outputs/icons/content/content_sharp.svg","category":"content","roundId":"225:3304","sharpId":"122:139"},"250:711":{"name":"Copy File","searchTerms":[""],"roundPath":"outputs/icons/content/copy_file_round.svg","sharpPath":"outputs/icons/content/copy_file_sharp.svg","category":"content","roundId":"225:3306","sharpId":"122:134"},"250:706":{"name":"Remove Circle Outline","searchTerms":["Minus"],"roundPath":"outputs/icons/content/remove_circle_outline_round.svg","sharpPath":"outputs/icons/content/remove_circle_outline_sharp.svg","category":"content","roundId":"225:3310","sharpId":"122:130"},"250:703":{"name":"Add Circle Outline","searchTerms":["Plus"],"roundPath":"outputs/icons/content/add_circle_outline_round.svg","sharpPath":"outputs/icons/content/add_circle_outline_sharp.svg","category":"content","roundId":"225:3309","sharpId":"122:142"},"250:705":{"name":"Remove Circle","searchTerms":["Minus","Workcloud","WC"],"roundPath":"outputs/icons/content/remove_circle_round.svg","sharpPath":"outputs/icons/content/remove_circle_sharp.svg","category":"content","roundId":"225:3305","sharpId":"122:147"},"250:707":{"name":"Block Content","searchTerms":["unclaim","cancel","do not","DNE","Workcloud","WC"],"roundPath":"outputs/icons/content/block_content_round.svg","sharpPath":"outputs/icons/content/block_content_sharp.svg","category":"content","roundId":"225:3311","sharpId":"122:144"},"250:702":{"name":"Add Circle","searchTerms":["Plus"],"roundPath":"outputs/icons/content/add_circle_round.svg","sharpPath":"outputs/icons/content/add_circle_sharp.svg","category":"content","roundId":"225:3324","sharpId":"122:136"},"250:704":{"name":"Remove","searchTerms":["Minus","remove","delete","Workcloud","WC"],"roundPath":"outputs/icons/content/remove_round.svg","sharpPath":"outputs/icons/content/remove_sharp.svg","category":"content","roundId":"225:3323","sharpId":"122:131"},"649:1688":{"name":"Android","searchTerms":["OS"],"roundPath":"outputs/icons/content/android_round.svg","sharpPath":"outputs/icons/content/android_sharp.svg","category":"content","roundId":"649:1689","sharpId":"649:1692"},"250:701":{"name":"Add Box","searchTerms":["Plus"],"roundPath":"outputs/icons/content/add_box_round.svg","sharpPath":"outputs/icons/content/add_box_sharp.svg","category":"content","roundId":"225:3320","sharpId":"122:146"},"649:1700":{"name":"Remove Box","searchTerms":["Minus"],"roundPath":"outputs/icons/content/remove_box_round.svg","sharpPath":"outputs/icons/content/remove_box_sharp.svg","category":"content","roundId":"649:1701","sharpId":"649:1704"},"250:726":{"name":"Push Pin","searchTerms":["pin","save","pushpin","mark","Workcloud","WC"],"roundPath":"outputs/icons/content/push_pin_round.svg","sharpPath":"outputs/icons/content/push_pin_sharp.svg","category":"content","roundId":"225:3313","sharpId":"225:3132"},"250:725":{"name":"Send","searchTerms":["chat","message","communication","send","Workcloud","WC"],"roundPath":"outputs/icons/content/send_round.svg","sharpPath":"outputs/icons/content/send_sharp.svg","category":"content","roundId":"225:3307","sharpId":"122:140"},"250:724":{"name":"Backspace","searchTerms":["Delete","clear","remove","backspace","Workcloud","WC"],"roundPath":"outputs/icons/content/backspace_round.svg","sharpPath":"outputs/icons/content/backspace_sharp.svg","category":"content","roundId":"225:3302","sharpId":"133:582"},"250:727":{"name":"Flag","searchTerms":["flag","mark","Workcloud","WC"],"roundPath":"outputs/icons/content/flag_round.svg","sharpPath":"outputs/icons/content/flag_sharp.svg","category":"content","roundId":"225:3315","sharpId":"225:3131"},"250:722":{"name":"Save Content","searchTerms":["file","save"],"roundPath":"outputs/icons/content/save_content_round.svg","sharpPath":"outputs/icons/content/save_content_sharp.svg","category":"content","roundId":"225:3312","sharpId":"122:143"},"250:720":{"name":"Reply","searchTerms":["email","e-mail","envelope","message","reply","Workcloud","WC"],"roundPath":"outputs/icons/content/reply_round.svg","sharpPath":"outputs/icons/content/reply_sharp.svg","category":"content","roundId":"225:3318","sharpId":"122:132"},"250:719":{"name":"Redo","searchTerms":["redo","edit","Workcloud","WC"],"roundPath":"outputs/icons/content/redo_round.svg","sharpPath":"outputs/icons/content/redo_sharp.svg","category":"content","roundId":"225:3321","sharpId":"225:3297"},"250:721":{"name":"Save Alt","searchTerms":["save","file","import","download","Workcloud","WC"],"roundPath":"outputs/icons/content/save_alt_round.svg","sharpPath":"outputs/icons/content/save_alt_sharp.svg","category":"content","roundId":"225:3308","sharpId":"122:129"},"250:718":{"name":"Undo","searchTerms":["undo","edit","Workcloud","WC"],"roundPath":"outputs/icons/content/undo_round.svg","sharpPath":"outputs/icons/content/undo_sharp.svg","category":"content","roundId":"225:3303","sharpId":"122:128"},"2657:3011":{"name":"Chart Pie Content","searchTerms":["report","analytics","chart","pie chart","pie-chart","piechart"],"roundPath":"outputs/icons/content/chart_pie_content_round.svg","sharpPath":"outputs/icons/content/chart_pie_content_sharp.svg","category":"content","roundId":"4932:3387","sharpId":"4932:3390"},"243:4533":{"name":"Email","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC"],"roundPath":"outputs/icons/content/email_round.svg","sharpPath":"outputs/icons/content/email_sharp.svg","category":"content","roundId":"225:2425","sharpId":"124:704"},"243:4535":{"name":"Email Outline","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC","outline"],"roundPath":"outputs/icons/content/email_outline_round.svg","sharpPath":"outputs/icons/content/email_outline_sharp.svg","category":"content","roundId":"225:2415","sharpId":"124:707"},"258:1493":{"name":"Scanner","searchTerms":["mobile"],"roundPath":"outputs/icons/hardware/scanner_round.svg","sharpPath":"outputs/icons/hardware/scanner_sharp.svg","category":"hardware","roundId":"238:1274","sharpId":"133:42"},"750:1654":{"name":"Printer","searchTerms":["print","printer","Workcloud","WC"],"roundPath":"outputs/icons/hardware/printer_round.svg","sharpPath":"outputs/icons/hardware/printer_sharp.svg","category":"hardware","roundId":"750:1655","sharpId":"750:1658"},"258:1494":{"name":"Cast","searchTerms":["Chrome"],"roundPath":"outputs/icons/hardware/cast_round.svg","sharpPath":"outputs/icons/hardware/cast_sharp.svg","category":"hardware","roundId":"238:1287","sharpId":"133:33"},"258:1495":{"name":"Cast Connected","searchTerms":["Chrome"],"roundPath":"outputs/icons/hardware/cast_connected_round.svg","sharpPath":"outputs/icons/hardware/cast_connected_sharp.svg","category":"hardware","roundId":"238:1282","sharpId":"238:1036"},"258:1496":{"name":"Desktop","searchTerms":[""],"roundPath":"outputs/icons/hardware/desktop_round.svg","sharpPath":"outputs/icons/hardware/desktop_sharp.svg","category":"hardware","roundId":"238:1279","sharpId":"133:37"},"258:1497":{"name":"Devices Ecosystem","searchTerms":[""],"roundPath":"outputs/icons/hardware/devices_ecosystem_round.svg","sharpPath":"outputs/icons/hardware/devices_ecosystem_sharp.svg","category":"hardware","roundId":"238:1285","sharpId":"133:34"},"648:1678":{"name":"Device Settings","searchTerms":[""],"roundPath":"outputs/icons/hardware/device_settings_round.svg","sharpPath":"outputs/icons/hardware/device_settings_sharp.svg","category":"hardware","roundId":"648:1679","sharpId":"648:1682"},"258:1498":{"name":"Headphones","searchTerms":[""],"roundPath":"outputs/icons/hardware/headphones_round.svg","sharpPath":"outputs/icons/hardware/headphones_sharp.svg","category":"hardware","roundId":"238:1281","sharpId":"133:30"},"258:1499":{"name":"Keyboard","searchTerms":["keyboard","keypad","type","Workcloud","WC"],"roundPath":"outputs/icons/hardware/keyboard_round.svg","sharpPath":"outputs/icons/hardware/keyboard_sharp.svg","category":"hardware","roundId":"238:1280","sharpId":"133:29"},"258:1500":{"name":"Laptop","searchTerms":["Computer"],"roundPath":"outputs/icons/hardware/laptop_round.svg","sharpPath":"outputs/icons/hardware/laptop_sharp.svg","category":"hardware","roundId":"238:1278","sharpId":"133:27"},"258:1501":{"name":"Memory","searchTerms":["Processor","Microprocessor"],"roundPath":"outputs/icons/hardware/memory_round.svg","sharpPath":"outputs/icons/hardware/memory_sharp.svg","category":"hardware","roundId":"238:1277","sharpId":"133:39"},"258:1502":{"name":"Monitor","searchTerms":[""],"roundPath":"outputs/icons/hardware/monitor_round.svg","sharpPath":"outputs/icons/hardware/monitor_sharp.svg","category":"hardware","roundId":"238:1283","sharpId":"133:26"},"258:1503":{"name":"Phone Android","searchTerms":["Mobile"],"roundPath":"outputs/icons/hardware/phone_android_round.svg","sharpPath":"outputs/icons/hardware/phone_android_sharp.svg","category":"hardware","roundId":"238:1276","sharpId":"133:36"},"258:1504":{"name":"Phone iPhone","searchTerms":["Mobile"],"roundPath":"outputs/icons/hardware/phone_iphone_round.svg","sharpPath":"outputs/icons/hardware/phone_iphone_sharp.svg","category":"hardware","roundId":"238:1275","sharpId":"133:25"},"258:1505":{"name":"Phonelink","searchTerms":["Connected"],"roundPath":"outputs/icons/hardware/phonelink_round.svg","sharpPath":"outputs/icons/hardware/phonelink_sharp.svg","category":"hardware","roundId":"238:1273","sharpId":"133:38"},"258:1506":{"name":"Security","searchTerms":["Protect","Protection","Shield"],"roundPath":"outputs/icons/hardware/security_round.svg","sharpPath":"outputs/icons/hardware/security_sharp.svg","category":"hardware","roundId":"238:1268","sharpId":"133:24"},"258:1507":{"name":"Video Play","searchTerms":[""],"roundPath":"outputs/icons/hardware/video_play_round.svg","sharpPath":"outputs/icons/hardware/video_play_sharp.svg","category":"hardware","roundId":"238:1286","sharpId":"133:41"},"258:1508":{"name":"Smart Phone","searchTerms":["Mobile","phone","device","Workcloud","WC"],"roundPath":"outputs/icons/hardware/smart_phone_round.svg","sharpPath":"outputs/icons/hardware/smart_phone_sharp.svg","category":"hardware","roundId":"238:1272","sharpId":"133:40"},"258:1509":{"name":"Speaker","searchTerms":[""],"roundPath":"outputs/icons/hardware/speaker_round.svg","sharpPath":"outputs/icons/hardware/speaker_sharp.svg","category":"hardware","roundId":"238:1267","sharpId":"133:35"},"258:1510":{"name":"Tablet","searchTerms":[""],"roundPath":"outputs/icons/hardware/tablet_round.svg","sharpPath":"outputs/icons/hardware/tablet_sharp.svg","category":"hardware","roundId":"238:1271","sharpId":"133:28"},"258:1511":{"name":"Tablet Mac","searchTerms":["iPad"],"roundPath":"outputs/icons/hardware/tablet_mac_round.svg","sharpPath":"outputs/icons/hardware/tablet_mac_sharp.svg","category":"hardware","roundId":"238:1270","sharpId":"133:32"},"258:1512":{"name":"TV","searchTerms":["Television"],"roundPath":"outputs/icons/hardware/tv_round.svg","sharpPath":"outputs/icons/hardware/tv_sharp.svg","category":"hardware","roundId":"238:1284","sharpId":"133:23"},"258:1513":{"name":"Watch","searchTerms":["Smartwatch"],"roundPath":"outputs/icons/hardware/watch_round.svg","sharpPath":"outputs/icons/hardware/watch_sharp.svg","category":"hardware","roundId":"238:1269","sharpId":"133:22"}} \ No newline at end of file diff --git a/outputs/icons/action/alarm_round.svg b/outputs/icons/action/alarm_round.svg deleted file mode 100644 index 6243ed83..00000000 --- a/outputs/icons/action/alarm_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/alarm_sharp.svg b/outputs/icons/action/alarm_sharp.svg deleted file mode 100644 index 61815ec3..00000000 --- a/outputs/icons/action/alarm_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/ar_round.svg b/outputs/icons/action/ar_round.svg deleted file mode 100644 index f5ad46fa..00000000 --- a/outputs/icons/action/ar_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/ar_sharp.svg b/outputs/icons/action/ar_sharp.svg deleted file mode 100644 index 1c4ced7a..00000000 --- a/outputs/icons/action/ar_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/bookmark_outline_round.svg b/outputs/icons/action/bookmark_outline_round.svg deleted file mode 100644 index 7f0119e0..00000000 --- a/outputs/icons/action/bookmark_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/bookmark_outline_sharp.svg b/outputs/icons/action/bookmark_outline_sharp.svg deleted file mode 100644 index ae4d88e9..00000000 --- a/outputs/icons/action/bookmark_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/bookmark_round.svg b/outputs/icons/action/bookmark_round.svg deleted file mode 100644 index 58f30b4a..00000000 --- a/outputs/icons/action/bookmark_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/bookmark_sharp.svg b/outputs/icons/action/bookmark_sharp.svg deleted file mode 100644 index 81fd27bf..00000000 --- a/outputs/icons/action/bookmark_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/build_round.svg b/outputs/icons/action/build_round.svg deleted file mode 100644 index db517b77..00000000 --- a/outputs/icons/action/build_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/build_sharp.svg b/outputs/icons/action/build_sharp.svg deleted file mode 100644 index 1784f5dd..00000000 --- a/outputs/icons/action/build_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/cached_round.svg b/outputs/icons/action/cached_round.svg deleted file mode 100644 index 92f6bbf8..00000000 --- a/outputs/icons/action/cached_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/cached_sharp.svg b/outputs/icons/action/cached_sharp.svg deleted file mode 100644 index 2c855604..00000000 --- a/outputs/icons/action/cached_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_3_day_round.svg b/outputs/icons/action/calendar_3_day_round.svg deleted file mode 100644 index 79cafda3..00000000 --- a/outputs/icons/action/calendar_3_day_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_3_day_sharp.svg b/outputs/icons/action/calendar_3_day_sharp.svg deleted file mode 100644 index 4314c298..00000000 --- a/outputs/icons/action/calendar_3_day_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_alt_1_round.svg b/outputs/icons/action/calendar_alt_1_round.svg deleted file mode 100644 index 0d0ba1dc..00000000 --- a/outputs/icons/action/calendar_alt_1_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_alt_1_sharp.svg b/outputs/icons/action/calendar_alt_1_sharp.svg deleted file mode 100644 index 6df7fcd8..00000000 --- a/outputs/icons/action/calendar_alt_1_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_alt_2_round.svg b/outputs/icons/action/calendar_alt_2_round.svg deleted file mode 100644 index 0e86a34d..00000000 --- a/outputs/icons/action/calendar_alt_2_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_alt_2_sharp.svg b/outputs/icons/action/calendar_alt_2_sharp.svg deleted file mode 100644 index f1baf24e..00000000 --- a/outputs/icons/action/calendar_alt_2_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_available_round.svg b/outputs/icons/action/calendar_available_round.svg deleted file mode 100644 index 201dd99b..00000000 --- a/outputs/icons/action/calendar_available_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_available_sharp.svg b/outputs/icons/action/calendar_available_sharp.svg deleted file mode 100644 index 201dd99b..00000000 --- a/outputs/icons/action/calendar_available_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_day_round.svg b/outputs/icons/action/calendar_day_round.svg deleted file mode 100644 index 453bd1e4..00000000 --- a/outputs/icons/action/calendar_day_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_day_sharp.svg b/outputs/icons/action/calendar_day_sharp.svg deleted file mode 100644 index 02457163..00000000 --- a/outputs/icons/action/calendar_day_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_edit_round.svg b/outputs/icons/action/calendar_edit_round.svg deleted file mode 100644 index 739c9117..00000000 --- a/outputs/icons/action/calendar_edit_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_edit_sharp.svg b/outputs/icons/action/calendar_edit_sharp.svg deleted file mode 100644 index 739c9117..00000000 --- a/outputs/icons/action/calendar_edit_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_monthly_round.svg b/outputs/icons/action/calendar_monthly_round.svg deleted file mode 100644 index 44433296..00000000 --- a/outputs/icons/action/calendar_monthly_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_monthly_sharp.svg b/outputs/icons/action/calendar_monthly_sharp.svg deleted file mode 100644 index 9c65bed6..00000000 --- a/outputs/icons/action/calendar_monthly_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_range_round.svg b/outputs/icons/action/calendar_range_round.svg deleted file mode 100644 index d6d0f702..00000000 --- a/outputs/icons/action/calendar_range_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_range_sharp.svg b/outputs/icons/action/calendar_range_sharp.svg deleted file mode 100644 index 6b954b21..00000000 --- a/outputs/icons/action/calendar_range_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_round.svg b/outputs/icons/action/calendar_round.svg deleted file mode 100644 index 196b9007..00000000 --- a/outputs/icons/action/calendar_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_sharp.svg b/outputs/icons/action/calendar_sharp.svg deleted file mode 100644 index 2dcd2b95..00000000 --- a/outputs/icons/action/calendar_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_unavailable_round.svg b/outputs/icons/action/calendar_unavailable_round.svg deleted file mode 100644 index 6a2935d1..00000000 --- a/outputs/icons/action/calendar_unavailable_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_unavailable_sharp.svg b/outputs/icons/action/calendar_unavailable_sharp.svg deleted file mode 100644 index 6a2935d1..00000000 --- a/outputs/icons/action/calendar_unavailable_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_weekly_round.svg b/outputs/icons/action/calendar_weekly_round.svg deleted file mode 100644 index e35cf1a7..00000000 --- a/outputs/icons/action/calendar_weekly_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_weekly_sharp.svg b/outputs/icons/action/calendar_weekly_sharp.svg deleted file mode 100644 index 4a8e73b8..00000000 --- a/outputs/icons/action/calendar_weekly_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_yearly_round.svg b/outputs/icons/action/calendar_yearly_round.svg deleted file mode 100644 index 85e45d01..00000000 --- a/outputs/icons/action/calendar_yearly_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/calendar_yearly_sharp.svg b/outputs/icons/action/calendar_yearly_sharp.svg deleted file mode 100644 index 4c2dba1d..00000000 --- a/outputs/icons/action/calendar_yearly_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_circle_outline_alt_round.svg b/outputs/icons/action/check_circle_outline_alt_round.svg deleted file mode 100644 index cca9eb54..00000000 --- a/outputs/icons/action/check_circle_outline_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_circle_outline_alt_sharp.svg b/outputs/icons/action/check_circle_outline_alt_sharp.svg deleted file mode 100644 index f1f9d7fa..00000000 --- a/outputs/icons/action/check_circle_outline_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_circle_outline_round.svg b/outputs/icons/action/check_circle_outline_round.svg deleted file mode 100644 index d11f513b..00000000 --- a/outputs/icons/action/check_circle_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_circle_outline_sharp.svg b/outputs/icons/action/check_circle_outline_sharp.svg deleted file mode 100644 index 61aa2bdd..00000000 --- a/outputs/icons/action/check_circle_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_circle_round.svg b/outputs/icons/action/check_circle_round.svg deleted file mode 100644 index 91795faa..00000000 --- a/outputs/icons/action/check_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_circle_sharp.svg b/outputs/icons/action/check_circle_sharp.svg deleted file mode 100644 index 2ceb48f3..00000000 --- a/outputs/icons/action/check_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_mark_round.svg b/outputs/icons/action/check_mark_round.svg deleted file mode 100644 index 10a0a5a5..00000000 --- a/outputs/icons/action/check_mark_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/check_mark_sharp.svg b/outputs/icons/action/check_mark_sharp.svg deleted file mode 100644 index 1f41f0de..00000000 --- a/outputs/icons/action/check_mark_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/clipboard_action_round.svg b/outputs/icons/action/clipboard_action_round.svg deleted file mode 100644 index 5915cff3..00000000 --- a/outputs/icons/action/clipboard_action_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/clipboard_action_sharp.svg b/outputs/icons/action/clipboard_action_sharp.svg deleted file mode 100644 index 7b62a176..00000000 --- a/outputs/icons/action/clipboard_action_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/clock_outline_round.svg b/outputs/icons/action/clock_outline_round.svg deleted file mode 100644 index ca1718c8..00000000 --- a/outputs/icons/action/clock_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/clock_outline_sharp.svg b/outputs/icons/action/clock_outline_sharp.svg deleted file mode 100644 index 74340755..00000000 --- a/outputs/icons/action/clock_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/clock_round.svg b/outputs/icons/action/clock_round.svg deleted file mode 100644 index fcacc808..00000000 --- a/outputs/icons/action/clock_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/clock_sharp.svg b/outputs/icons/action/clock_sharp.svg deleted file mode 100644 index ddc75f9d..00000000 --- a/outputs/icons/action/clock_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/credit_card_round.svg b/outputs/icons/action/credit_card_round.svg deleted file mode 100644 index 1553a8d2..00000000 --- a/outputs/icons/action/credit_card_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/credit_card_sharp.svg b/outputs/icons/action/credit_card_sharp.svg deleted file mode 100644 index c5b345be..00000000 --- a/outputs/icons/action/credit_card_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/delete_forever_round.svg b/outputs/icons/action/delete_forever_round.svg deleted file mode 100644 index c50d1b0a..00000000 --- a/outputs/icons/action/delete_forever_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/delete_forever_sharp.svg b/outputs/icons/action/delete_forever_sharp.svg deleted file mode 100644 index 452ccb9b..00000000 --- a/outputs/icons/action/delete_forever_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/delete_outline_round.svg b/outputs/icons/action/delete_outline_round.svg deleted file mode 100644 index 10348293..00000000 --- a/outputs/icons/action/delete_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/delete_outline_sharp.svg b/outputs/icons/action/delete_outline_sharp.svg deleted file mode 100644 index 49fceb41..00000000 --- a/outputs/icons/action/delete_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/delete_round.svg b/outputs/icons/action/delete_round.svg deleted file mode 100644 index a5c27475..00000000 --- a/outputs/icons/action/delete_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/delete_sharp.svg b/outputs/icons/action/delete_sharp.svg deleted file mode 100644 index e858c50c..00000000 --- a/outputs/icons/action/delete_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/dislike_round.svg b/outputs/icons/action/dislike_round.svg deleted file mode 100644 index b054bc0b..00000000 --- a/outputs/icons/action/dislike_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/dislike_sharp.svg b/outputs/icons/action/dislike_sharp.svg deleted file mode 100644 index c05244d7..00000000 --- a/outputs/icons/action/dislike_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/document_round.svg b/outputs/icons/action/document_round.svg deleted file mode 100644 index 1315f3fe..00000000 --- a/outputs/icons/action/document_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/document_sharp.svg b/outputs/icons/action/document_sharp.svg deleted file mode 100644 index 6670c5f4..00000000 --- a/outputs/icons/action/document_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/download_round.svg b/outputs/icons/action/download_round.svg deleted file mode 100644 index 4808c460..00000000 --- a/outputs/icons/action/download_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/download_sharp.svg b/outputs/icons/action/download_sharp.svg deleted file mode 100644 index af308c98..00000000 --- a/outputs/icons/action/download_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/filter_alt_round.svg b/outputs/icons/action/filter_alt_round.svg deleted file mode 100644 index 2cc9dc6f..00000000 --- a/outputs/icons/action/filter_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/filter_alt_sharp.svg b/outputs/icons/action/filter_alt_sharp.svg deleted file mode 100644 index 4d01987a..00000000 --- a/outputs/icons/action/filter_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/filter_round.svg b/outputs/icons/action/filter_round.svg deleted file mode 100644 index 6aa046e3..00000000 --- a/outputs/icons/action/filter_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/filter_sharp.svg b/outputs/icons/action/filter_sharp.svg deleted file mode 100644 index 3a69c3db..00000000 --- a/outputs/icons/action/filter_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/hand_round.svg b/outputs/icons/action/hand_round.svg deleted file mode 100644 index 244ce824..00000000 --- a/outputs/icons/action/hand_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/hand_sharp.svg b/outputs/icons/action/hand_sharp.svg deleted file mode 100644 index 363c86a2..00000000 --- a/outputs/icons/action/hand_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/history_round.svg b/outputs/icons/action/history_round.svg deleted file mode 100644 index c3316d1d..00000000 --- a/outputs/icons/action/history_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/history_sharp.svg b/outputs/icons/action/history_sharp.svg deleted file mode 100644 index fb34aa5a..00000000 --- a/outputs/icons/action/history_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/home_round.svg b/outputs/icons/action/home_round.svg deleted file mode 100644 index ccabee28..00000000 --- a/outputs/icons/action/home_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/home_sharp.svg b/outputs/icons/action/home_sharp.svg deleted file mode 100644 index bd479721..00000000 --- a/outputs/icons/action/home_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/info_round.svg b/outputs/icons/action/info_round.svg deleted file mode 100644 index 6c626452..00000000 --- a/outputs/icons/action/info_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/info_sharp.svg b/outputs/icons/action/info_sharp.svg deleted file mode 100644 index a9ed821b..00000000 --- a/outputs/icons/action/info_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/ios_share_round.svg b/outputs/icons/action/ios_share_round.svg deleted file mode 100644 index cec10743..00000000 --- a/outputs/icons/action/ios_share_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/ios_share_sharp.svg b/outputs/icons/action/ios_share_sharp.svg deleted file mode 100644 index 2ea99c80..00000000 --- a/outputs/icons/action/ios_share_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/label_round.svg b/outputs/icons/action/label_round.svg deleted file mode 100644 index eb172959..00000000 --- a/outputs/icons/action/label_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/label_sharp.svg b/outputs/icons/action/label_sharp.svg deleted file mode 100644 index 7c46b7bb..00000000 --- a/outputs/icons/action/label_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/like_round.svg b/outputs/icons/action/like_round.svg deleted file mode 100644 index c52d1e15..00000000 --- a/outputs/icons/action/like_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/like_sharp.svg b/outputs/icons/action/like_sharp.svg deleted file mode 100644 index af20897c..00000000 --- a/outputs/icons/action/like_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/lock_alt_round.svg b/outputs/icons/action/lock_alt_round.svg deleted file mode 100644 index 5e4663e1..00000000 --- a/outputs/icons/action/lock_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/lock_alt_sharp.svg b/outputs/icons/action/lock_alt_sharp.svg deleted file mode 100644 index 8ebef6a4..00000000 --- a/outputs/icons/action/lock_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/lock_round.svg b/outputs/icons/action/lock_round.svg deleted file mode 100644 index e09fa667..00000000 --- a/outputs/icons/action/lock_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/lock_sharp.svg b/outputs/icons/action/lock_sharp.svg deleted file mode 100644 index 2ce413ca..00000000 --- a/outputs/icons/action/lock_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/log_in_round.svg b/outputs/icons/action/log_in_round.svg deleted file mode 100644 index 7f6a2645..00000000 --- a/outputs/icons/action/log_in_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/log_in_sharp.svg b/outputs/icons/action/log_in_sharp.svg deleted file mode 100644 index 7f0342cc..00000000 --- a/outputs/icons/action/log_in_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/log_out_round.svg b/outputs/icons/action/log_out_round.svg deleted file mode 100644 index 16a44a1a..00000000 --- a/outputs/icons/action/log_out_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/log_out_sharp.svg b/outputs/icons/action/log_out_sharp.svg deleted file mode 100644 index 82edc69e..00000000 --- a/outputs/icons/action/log_out_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/love_outline_round.svg b/outputs/icons/action/love_outline_round.svg deleted file mode 100644 index 1efd301f..00000000 --- a/outputs/icons/action/love_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/love_outline_sharp.svg b/outputs/icons/action/love_outline_sharp.svg deleted file mode 100644 index facda944..00000000 --- a/outputs/icons/action/love_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/love_round.svg b/outputs/icons/action/love_round.svg deleted file mode 100644 index d924d688..00000000 --- a/outputs/icons/action/love_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/love_sharp.svg b/outputs/icons/action/love_sharp.svg deleted file mode 100644 index 4221666a..00000000 --- a/outputs/icons/action/love_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/open_in_full_round.svg b/outputs/icons/action/open_in_full_round.svg deleted file mode 100644 index 43525e76..00000000 --- a/outputs/icons/action/open_in_full_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/open_in_full_sharp.svg b/outputs/icons/action/open_in_full_sharp.svg deleted file mode 100644 index 7c70f184..00000000 --- a/outputs/icons/action/open_in_full_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/open_in_new_window_round.svg b/outputs/icons/action/open_in_new_window_round.svg deleted file mode 100644 index fda53811..00000000 --- a/outputs/icons/action/open_in_new_window_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/open_in_new_window_sharp.svg b/outputs/icons/action/open_in_new_window_sharp.svg deleted file mode 100644 index 663f514a..00000000 --- a/outputs/icons/action/open_in_new_window_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/pending_round.svg b/outputs/icons/action/pending_round.svg deleted file mode 100644 index 99d0cc62..00000000 --- a/outputs/icons/action/pending_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/pending_sharp.svg b/outputs/icons/action/pending_sharp.svg deleted file mode 100644 index e1f20ccc..00000000 --- a/outputs/icons/action/pending_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/pin_round.svg b/outputs/icons/action/pin_round.svg deleted file mode 100644 index 1a393b16..00000000 --- a/outputs/icons/action/pin_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/pin_sharp.svg b/outputs/icons/action/pin_sharp.svg deleted file mode 100644 index 740855a4..00000000 --- a/outputs/icons/action/pin_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/price_round.svg b/outputs/icons/action/price_round.svg deleted file mode 100644 index daab97df..00000000 --- a/outputs/icons/action/price_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/price_sharp.svg b/outputs/icons/action/price_sharp.svg deleted file mode 100644 index d484ba25..00000000 --- a/outputs/icons/action/price_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/renew_round.svg b/outputs/icons/action/renew_round.svg deleted file mode 100644 index 819f251f..00000000 --- a/outputs/icons/action/renew_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/renew_sharp.svg b/outputs/icons/action/renew_sharp.svg deleted file mode 100644 index b34e885e..00000000 --- a/outputs/icons/action/renew_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/search_round.svg b/outputs/icons/action/search_round.svg deleted file mode 100644 index c5d92012..00000000 --- a/outputs/icons/action/search_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/search_sharp.svg b/outputs/icons/action/search_sharp.svg deleted file mode 100644 index 5dd781a2..00000000 --- a/outputs/icons/action/search_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/security_check_round.svg b/outputs/icons/action/security_check_round.svg deleted file mode 100644 index b81eea3a..00000000 --- a/outputs/icons/action/security_check_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/security_check_sharp.svg b/outputs/icons/action/security_check_sharp.svg deleted file mode 100644 index dab4adc9..00000000 --- a/outputs/icons/action/security_check_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/settings_round.svg b/outputs/icons/action/settings_round.svg deleted file mode 100644 index 15d4efdf..00000000 --- a/outputs/icons/action/settings_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/settings_sharp.svg b/outputs/icons/action/settings_sharp.svg deleted file mode 100644 index c52ab18c..00000000 --- a/outputs/icons/action/settings_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/share_round.svg b/outputs/icons/action/share_round.svg deleted file mode 100644 index 23565d76..00000000 --- a/outputs/icons/action/share_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/share_sharp.svg b/outputs/icons/action/share_sharp.svg deleted file mode 100644 index ebeb7405..00000000 --- a/outputs/icons/action/share_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/sync_action_round.svg b/outputs/icons/action/sync_action_round.svg deleted file mode 100644 index 397bbcf7..00000000 --- a/outputs/icons/action/sync_action_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/sync_action_sharp.svg b/outputs/icons/action/sync_action_sharp.svg deleted file mode 100644 index 9b836ef6..00000000 --- a/outputs/icons/action/sync_action_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/touch_round.svg b/outputs/icons/action/touch_round.svg deleted file mode 100644 index 8ffdb199..00000000 --- a/outputs/icons/action/touch_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/touch_sharp.svg b/outputs/icons/action/touch_sharp.svg deleted file mode 100644 index f5004aa3..00000000 --- a/outputs/icons/action/touch_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/trending_down_round.svg b/outputs/icons/action/trending_down_round.svg deleted file mode 100644 index 7b94eedc..00000000 --- a/outputs/icons/action/trending_down_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/trending_down_sharp.svg b/outputs/icons/action/trending_down_sharp.svg deleted file mode 100644 index 1c896d1e..00000000 --- a/outputs/icons/action/trending_down_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/trending_up_round.svg b/outputs/icons/action/trending_up_round.svg deleted file mode 100644 index 66894886..00000000 --- a/outputs/icons/action/trending_up_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/trending_up_sharp.svg b/outputs/icons/action/trending_up_sharp.svg deleted file mode 100644 index 08da9964..00000000 --- a/outputs/icons/action/trending_up_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/unlock_alt_round.svg b/outputs/icons/action/unlock_alt_round.svg deleted file mode 100644 index 508d260c..00000000 --- a/outputs/icons/action/unlock_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/unlock_alt_sharp.svg b/outputs/icons/action/unlock_alt_sharp.svg deleted file mode 100644 index 82d070b9..00000000 --- a/outputs/icons/action/unlock_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/unlock_round.svg b/outputs/icons/action/unlock_round.svg deleted file mode 100644 index e51a721f..00000000 --- a/outputs/icons/action/unlock_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/unlock_sharp.svg b/outputs/icons/action/unlock_sharp.svg deleted file mode 100644 index de7b42c9..00000000 --- a/outputs/icons/action/unlock_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/update_round.svg b/outputs/icons/action/update_round.svg deleted file mode 100644 index ee3b53b9..00000000 --- a/outputs/icons/action/update_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/update_sharp.svg b/outputs/icons/action/update_sharp.svg deleted file mode 100644 index 351c874a..00000000 --- a/outputs/icons/action/update_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/upload_round.svg b/outputs/icons/action/upload_round.svg deleted file mode 100644 index c751d873..00000000 --- a/outputs/icons/action/upload_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/upload_sharp.svg b/outputs/icons/action/upload_sharp.svg deleted file mode 100644 index 84116245..00000000 --- a/outputs/icons/action/upload_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/user_circle_round.svg b/outputs/icons/action/user_circle_round.svg deleted file mode 100644 index 13b8eee5..00000000 --- a/outputs/icons/action/user_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/user_circle_sharp.svg b/outputs/icons/action/user_circle_sharp.svg deleted file mode 100644 index 661315a4..00000000 --- a/outputs/icons/action/user_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/user_round.svg b/outputs/icons/action/user_round.svg deleted file mode 100644 index f8b96630..00000000 --- a/outputs/icons/action/user_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/user_settings_round.svg b/outputs/icons/action/user_settings_round.svg deleted file mode 100644 index 9444f748..00000000 --- a/outputs/icons/action/user_settings_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/user_settings_sharp.svg b/outputs/icons/action/user_settings_sharp.svg deleted file mode 100644 index c40bc412..00000000 --- a/outputs/icons/action/user_settings_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/user_sharp.svg b/outputs/icons/action/user_sharp.svg deleted file mode 100644 index dde88242..00000000 --- a/outputs/icons/action/user_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/verified_round.svg b/outputs/icons/action/verified_round.svg deleted file mode 100644 index 6b8ea441..00000000 --- a/outputs/icons/action/verified_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/verified_sharp.svg b/outputs/icons/action/verified_sharp.svg deleted file mode 100644 index 1424eaeb..00000000 --- a/outputs/icons/action/verified_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/visibility_off_round.svg b/outputs/icons/action/visibility_off_round.svg deleted file mode 100644 index a04e41e4..00000000 --- a/outputs/icons/action/visibility_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/visibility_off_sharp.svg b/outputs/icons/action/visibility_off_sharp.svg deleted file mode 100644 index 6e997a75..00000000 --- a/outputs/icons/action/visibility_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/visibility_round.svg b/outputs/icons/action/visibility_round.svg deleted file mode 100644 index 6a6a4e18..00000000 --- a/outputs/icons/action/visibility_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/visibility_sharp.svg b/outputs/icons/action/visibility_sharp.svg deleted file mode 100644 index 99ad89ea..00000000 --- a/outputs/icons/action/visibility_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/world_action_round.svg b/outputs/icons/action/world_action_round.svg deleted file mode 100644 index fa661983..00000000 --- a/outputs/icons/action/world_action_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/world_action_sharp.svg b/outputs/icons/action/world_action_sharp.svg deleted file mode 100644 index 0f514fb3..00000000 --- a/outputs/icons/action/world_action_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/zoom_in_round.svg b/outputs/icons/action/zoom_in_round.svg deleted file mode 100644 index 7dba20ed..00000000 --- a/outputs/icons/action/zoom_in_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/zoom_in_sharp.svg b/outputs/icons/action/zoom_in_sharp.svg deleted file mode 100644 index a46403b2..00000000 --- a/outputs/icons/action/zoom_in_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/zoom_out_round.svg b/outputs/icons/action/zoom_out_round.svg deleted file mode 100644 index ebd04154..00000000 --- a/outputs/icons/action/zoom_out_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/action/zoom_out_sharp.svg b/outputs/icons/action/zoom_out_sharp.svg deleted file mode 100644 index 4bc43212..00000000 --- a/outputs/icons/action/zoom_out_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/add_alert_round.svg b/outputs/icons/alert/add_alert_round.svg deleted file mode 100644 index 32030ef0..00000000 --- a/outputs/icons/alert/add_alert_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/add_alert_sharp.svg b/outputs/icons/alert/add_alert_sharp.svg deleted file mode 100644 index 740c4128..00000000 --- a/outputs/icons/alert/add_alert_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/alert_active_round.svg b/outputs/icons/alert/alert_active_round.svg deleted file mode 100644 index fcbacbdc..00000000 --- a/outputs/icons/alert/alert_active_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/alert_active_sharp.svg b/outputs/icons/alert/alert_active_sharp.svg deleted file mode 100644 index 7d99a4dd..00000000 --- a/outputs/icons/alert/alert_active_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/alert_outline_round.svg b/outputs/icons/alert/alert_outline_round.svg deleted file mode 100644 index 1b14895f..00000000 --- a/outputs/icons/alert/alert_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/alert_outline_sharp.svg b/outputs/icons/alert/alert_outline_sharp.svg deleted file mode 100644 index d454f3f8..00000000 --- a/outputs/icons/alert/alert_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/alert_round.svg b/outputs/icons/alert/alert_round.svg deleted file mode 100644 index e3324060..00000000 --- a/outputs/icons/alert/alert_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/alert_sharp.svg b/outputs/icons/alert/alert_sharp.svg deleted file mode 100644 index 2d96daba..00000000 --- a/outputs/icons/alert/alert_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/auto_delete_round.svg b/outputs/icons/alert/auto_delete_round.svg deleted file mode 100644 index f24caaf7..00000000 --- a/outputs/icons/alert/auto_delete_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/auto_delete_sharp.svg b/outputs/icons/alert/auto_delete_sharp.svg deleted file mode 100644 index 94b51a3a..00000000 --- a/outputs/icons/alert/auto_delete_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/error_outline_round.svg b/outputs/icons/alert/error_outline_round.svg deleted file mode 100644 index 4cc3014c..00000000 --- a/outputs/icons/alert/error_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/error_outline_sharp.svg b/outputs/icons/alert/error_outline_sharp.svg deleted file mode 100644 index 39a687c7..00000000 --- a/outputs/icons/alert/error_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/error_round.svg b/outputs/icons/alert/error_round.svg deleted file mode 100644 index 6972a2dc..00000000 --- a/outputs/icons/alert/error_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/error_sharp.svg b/outputs/icons/alert/error_sharp.svg deleted file mode 100644 index 5e9c0c4b..00000000 --- a/outputs/icons/alert/error_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/important_notification_round.svg b/outputs/icons/alert/important_notification_round.svg deleted file mode 100644 index 6871174b..00000000 --- a/outputs/icons/alert/important_notification_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/important_notification_sharp.svg b/outputs/icons/alert/important_notification_sharp.svg deleted file mode 100644 index 7774f250..00000000 --- a/outputs/icons/alert/important_notification_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/warning_outline_round.svg b/outputs/icons/alert/warning_outline_round.svg deleted file mode 100644 index 579e750b..00000000 --- a/outputs/icons/alert/warning_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/warning_outline_sharp.svg b/outputs/icons/alert/warning_outline_sharp.svg deleted file mode 100644 index 4e607963..00000000 --- a/outputs/icons/alert/warning_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/warning_round.svg b/outputs/icons/alert/warning_round.svg deleted file mode 100644 index b5f51c73..00000000 --- a/outputs/icons/alert/warning_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/alert/warning_sharp.svg b/outputs/icons/alert/warning_sharp.svg deleted file mode 100644 index e76af36d..00000000 --- a/outputs/icons/alert/warning_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/closed_caption_round.svg b/outputs/icons/audio_video/closed_caption_round.svg deleted file mode 100644 index 6bcd41d0..00000000 --- a/outputs/icons/audio_video/closed_caption_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/closed_caption_sharp.svg b/outputs/icons/audio_video/closed_caption_sharp.svg deleted file mode 100644 index b797d00d..00000000 --- a/outputs/icons/audio_video/closed_caption_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/fast_forward_round.svg b/outputs/icons/audio_video/fast_forward_round.svg deleted file mode 100644 index 7ac2ab9c..00000000 --- a/outputs/icons/audio_video/fast_forward_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/fast_forward_sharp.svg b/outputs/icons/audio_video/fast_forward_sharp.svg deleted file mode 100644 index c859a26e..00000000 --- a/outputs/icons/audio_video/fast_forward_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/fast_rewind_round.svg b/outputs/icons/audio_video/fast_rewind_round.svg deleted file mode 100644 index 4e7f5aa4..00000000 --- a/outputs/icons/audio_video/fast_rewind_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/fast_rewind_sharp.svg b/outputs/icons/audio_video/fast_rewind_sharp.svg deleted file mode 100644 index 015e3957..00000000 --- a/outputs/icons/audio_video/fast_rewind_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/microphone_off_round.svg b/outputs/icons/audio_video/microphone_off_round.svg deleted file mode 100644 index 83168eb7..00000000 --- a/outputs/icons/audio_video/microphone_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/microphone_off_sharp.svg b/outputs/icons/audio_video/microphone_off_sharp.svg deleted file mode 100644 index ee5861e3..00000000 --- a/outputs/icons/audio_video/microphone_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/microphone_outline_round.svg b/outputs/icons/audio_video/microphone_outline_round.svg deleted file mode 100644 index b8b9543f..00000000 --- a/outputs/icons/audio_video/microphone_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/microphone_outline_sharp.svg b/outputs/icons/audio_video/microphone_outline_sharp.svg deleted file mode 100644 index 8e42ada0..00000000 --- a/outputs/icons/audio_video/microphone_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/microphone_round.svg b/outputs/icons/audio_video/microphone_round.svg deleted file mode 100644 index cd88f5c3..00000000 --- a/outputs/icons/audio_video/microphone_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/microphone_sharp.svg b/outputs/icons/audio_video/microphone_sharp.svg deleted file mode 100644 index 19390a2f..00000000 --- a/outputs/icons/audio_video/microphone_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/pause_circle_round.svg b/outputs/icons/audio_video/pause_circle_round.svg deleted file mode 100644 index 2b78fc53..00000000 --- a/outputs/icons/audio_video/pause_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/pause_circle_sharp.svg b/outputs/icons/audio_video/pause_circle_sharp.svg deleted file mode 100644 index ebaf2eb7..00000000 --- a/outputs/icons/audio_video/pause_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/pause_round.svg b/outputs/icons/audio_video/pause_round.svg deleted file mode 100644 index c624f209..00000000 --- a/outputs/icons/audio_video/pause_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/pause_sharp.svg b/outputs/icons/audio_video/pause_sharp.svg deleted file mode 100644 index 782c6819..00000000 --- a/outputs/icons/audio_video/pause_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/play_circle_round.svg b/outputs/icons/audio_video/play_circle_round.svg deleted file mode 100644 index c21f8316..00000000 --- a/outputs/icons/audio_video/play_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/play_circle_sharp.svg b/outputs/icons/audio_video/play_circle_sharp.svg deleted file mode 100644 index 7e670926..00000000 --- a/outputs/icons/audio_video/play_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/play_outline_round.svg b/outputs/icons/audio_video/play_outline_round.svg deleted file mode 100644 index 3a7c0e8c..00000000 --- a/outputs/icons/audio_video/play_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/play_outline_sharp.svg b/outputs/icons/audio_video/play_outline_sharp.svg deleted file mode 100644 index 6f0db105..00000000 --- a/outputs/icons/audio_video/play_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/play_round.svg b/outputs/icons/audio_video/play_round.svg deleted file mode 100644 index 23a26713..00000000 --- a/outputs/icons/audio_video/play_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/play_sharp.svg b/outputs/icons/audio_video/play_sharp.svg deleted file mode 100644 index 3a2288ee..00000000 --- a/outputs/icons/audio_video/play_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/replay_round.svg b/outputs/icons/audio_video/replay_round.svg deleted file mode 100644 index 6064d374..00000000 --- a/outputs/icons/audio_video/replay_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/replay_sharp.svg b/outputs/icons/audio_video/replay_sharp.svg deleted file mode 100644 index 4545094e..00000000 --- a/outputs/icons/audio_video/replay_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/skip_next_round.svg b/outputs/icons/audio_video/skip_next_round.svg deleted file mode 100644 index 9743c3c8..00000000 --- a/outputs/icons/audio_video/skip_next_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/skip_next_sharp.svg b/outputs/icons/audio_video/skip_next_sharp.svg deleted file mode 100644 index 9baea7c8..00000000 --- a/outputs/icons/audio_video/skip_next_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/skip_previous_round.svg b/outputs/icons/audio_video/skip_previous_round.svg deleted file mode 100644 index bfa6f0a1..00000000 --- a/outputs/icons/audio_video/skip_previous_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/skip_previous_sharp.svg b/outputs/icons/audio_video/skip_previous_sharp.svg deleted file mode 100644 index b3ac3a91..00000000 --- a/outputs/icons/audio_video/skip_previous_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/stop_circle_round.svg b/outputs/icons/audio_video/stop_circle_round.svg deleted file mode 100644 index 6a3bffd1..00000000 --- a/outputs/icons/audio_video/stop_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/stop_circle_sharp.svg b/outputs/icons/audio_video/stop_circle_sharp.svg deleted file mode 100644 index 66cb49c7..00000000 --- a/outputs/icons/audio_video/stop_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/stop_round.svg b/outputs/icons/audio_video/stop_round.svg deleted file mode 100644 index 95a64f15..00000000 --- a/outputs/icons/audio_video/stop_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/stop_sharp.svg b/outputs/icons/audio_video/stop_sharp.svg deleted file mode 100644 index 9981fbdd..00000000 --- a/outputs/icons/audio_video/stop_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/video_camera_round.svg b/outputs/icons/audio_video/video_camera_round.svg deleted file mode 100644 index 599a2679..00000000 --- a/outputs/icons/audio_video/video_camera_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/video_camera_sharp.svg b/outputs/icons/audio_video/video_camera_sharp.svg deleted file mode 100644 index 38f7517d..00000000 --- a/outputs/icons/audio_video/video_camera_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_down_round.svg b/outputs/icons/audio_video/volume_down_round.svg deleted file mode 100644 index bd06a40c..00000000 --- a/outputs/icons/audio_video/volume_down_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_down_sharp.svg b/outputs/icons/audio_video/volume_down_sharp.svg deleted file mode 100644 index 3acd2675..00000000 --- a/outputs/icons/audio_video/volume_down_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_mute_round.svg b/outputs/icons/audio_video/volume_mute_round.svg deleted file mode 100644 index 69ec623b..00000000 --- a/outputs/icons/audio_video/volume_mute_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_mute_sharp.svg b/outputs/icons/audio_video/volume_mute_sharp.svg deleted file mode 100644 index e1ee44bd..00000000 --- a/outputs/icons/audio_video/volume_mute_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_off_round.svg b/outputs/icons/audio_video/volume_off_round.svg deleted file mode 100644 index 824b620a..00000000 --- a/outputs/icons/audio_video/volume_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_off_sharp.svg b/outputs/icons/audio_video/volume_off_sharp.svg deleted file mode 100644 index dd6459a4..00000000 --- a/outputs/icons/audio_video/volume_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_up_round.svg b/outputs/icons/audio_video/volume_up_round.svg deleted file mode 100644 index 9a7aacd0..00000000 --- a/outputs/icons/audio_video/volume_up_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/audio_video/volume_up_sharp.svg b/outputs/icons/audio_video/volume_up_sharp.svg deleted file mode 100644 index e2582da6..00000000 --- a/outputs/icons/audio_video/volume_up_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/analytics_round.svg b/outputs/icons/charts/analytics_round.svg deleted file mode 100644 index 96bde827..00000000 --- a/outputs/icons/charts/analytics_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/analytics_sharp.svg b/outputs/icons/charts/analytics_sharp.svg deleted file mode 100644 index 96bde827..00000000 --- a/outputs/icons/charts/analytics_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_bar_round.svg b/outputs/icons/charts/chart_bar_round.svg deleted file mode 100644 index 433e137a..00000000 --- a/outputs/icons/charts/chart_bar_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_bar_sharp.svg b/outputs/icons/charts/chart_bar_sharp.svg deleted file mode 100644 index 433e137a..00000000 --- a/outputs/icons/charts/chart_bar_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_bubble_charts_round.svg b/outputs/icons/charts/chart_bubble_charts_round.svg deleted file mode 100644 index ea38516b..00000000 --- a/outputs/icons/charts/chart_bubble_charts_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_bubble_charts_sharp.svg b/outputs/icons/charts/chart_bubble_charts_sharp.svg deleted file mode 100644 index ea38516b..00000000 --- a/outputs/icons/charts/chart_bubble_charts_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_bubble_round.svg b/outputs/icons/charts/chart_bubble_round.svg deleted file mode 100644 index 0e8d325e..00000000 --- a/outputs/icons/charts/chart_bubble_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_bubble_sharp.svg b/outputs/icons/charts/chart_bubble_sharp.svg deleted file mode 100644 index 0e8d325e..00000000 --- a/outputs/icons/charts/chart_bubble_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_doughnut_round.svg b/outputs/icons/charts/chart_doughnut_round.svg deleted file mode 100644 index fba4dffd..00000000 --- a/outputs/icons/charts/chart_doughnut_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_doughnut_sharp.svg b/outputs/icons/charts/chart_doughnut_sharp.svg deleted file mode 100644 index fba4dffd..00000000 --- a/outputs/icons/charts/chart_doughnut_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_filled_round.svg b/outputs/icons/charts/chart_filled_round.svg deleted file mode 100644 index 41079112..00000000 --- a/outputs/icons/charts/chart_filled_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_filled_sharp.svg b/outputs/icons/charts/chart_filled_sharp.svg deleted file mode 100644 index 41079112..00000000 --- a/outputs/icons/charts/chart_filled_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_gantt_round.svg b/outputs/icons/charts/chart_gantt_round.svg deleted file mode 100644 index d0112f44..00000000 --- a/outputs/icons/charts/chart_gantt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_gantt_sharp.svg b/outputs/icons/charts/chart_gantt_sharp.svg deleted file mode 100644 index d0112f44..00000000 --- a/outputs/icons/charts/chart_gantt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_line_predict_round.svg b/outputs/icons/charts/chart_line_predict_round.svg deleted file mode 100644 index a4a5908a..00000000 --- a/outputs/icons/charts/chart_line_predict_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_line_predict_sharp.svg b/outputs/icons/charts/chart_line_predict_sharp.svg deleted file mode 100644 index a4a5908a..00000000 --- a/outputs/icons/charts/chart_line_predict_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_line_round.svg b/outputs/icons/charts/chart_line_round.svg deleted file mode 100644 index 641b6a61..00000000 --- a/outputs/icons/charts/chart_line_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_line_sharp.svg b/outputs/icons/charts/chart_line_sharp.svg deleted file mode 100644 index 641b6a61..00000000 --- a/outputs/icons/charts/chart_line_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_line_stacked_round.svg b/outputs/icons/charts/chart_line_stacked_round.svg deleted file mode 100644 index cc9c0799..00000000 --- a/outputs/icons/charts/chart_line_stacked_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_line_stacked_sharp.svg b/outputs/icons/charts/chart_line_stacked_sharp.svg deleted file mode 100644 index cc9c0799..00000000 --- a/outputs/icons/charts/chart_line_stacked_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_outline_round.svg b/outputs/icons/charts/chart_outline_round.svg deleted file mode 100644 index c6b7b8c6..00000000 --- a/outputs/icons/charts/chart_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_outline_sharp.svg b/outputs/icons/charts/chart_outline_sharp.svg deleted file mode 100644 index c6b7b8c6..00000000 --- a/outputs/icons/charts/chart_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_pie_charts_round.svg b/outputs/icons/charts/chart_pie_charts_round.svg deleted file mode 100644 index 58d0a227..00000000 --- a/outputs/icons/charts/chart_pie_charts_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_pie_charts_sharp.svg b/outputs/icons/charts/chart_pie_charts_sharp.svg deleted file mode 100644 index 58d0a227..00000000 --- a/outputs/icons/charts/chart_pie_charts_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_pie_round.svg b/outputs/icons/charts/chart_pie_round.svg deleted file mode 100644 index 74ea414a..00000000 --- a/outputs/icons/charts/chart_pie_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_pie_sharp.svg b/outputs/icons/charts/chart_pie_sharp.svg deleted file mode 100644 index 74ea414a..00000000 --- a/outputs/icons/charts/chart_pie_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_scatter_plot_round.svg b/outputs/icons/charts/chart_scatter_plot_round.svg deleted file mode 100644 index 4f2a6cbf..00000000 --- a/outputs/icons/charts/chart_scatter_plot_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_scatter_plot_sharp.svg b/outputs/icons/charts/chart_scatter_plot_sharp.svg deleted file mode 100644 index 28dc0253..00000000 --- a/outputs/icons/charts/chart_scatter_plot_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_stacked_round.svg b/outputs/icons/charts/chart_stacked_round.svg deleted file mode 100644 index 0fd2bf8f..00000000 --- a/outputs/icons/charts/chart_stacked_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_stacked_sharp.svg b/outputs/icons/charts/chart_stacked_sharp.svg deleted file mode 100644 index 0fd2bf8f..00000000 --- a/outputs/icons/charts/chart_stacked_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_waterfall_round.svg b/outputs/icons/charts/chart_waterfall_round.svg deleted file mode 100644 index 604b3df0..00000000 --- a/outputs/icons/charts/chart_waterfall_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/chart_waterfall_sharp.svg b/outputs/icons/charts/chart_waterfall_sharp.svg deleted file mode 100644 index 604b3df0..00000000 --- a/outputs/icons/charts/chart_waterfall_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/report_round.svg b/outputs/icons/charts/report_round.svg deleted file mode 100644 index 8ea546c5..00000000 --- a/outputs/icons/charts/report_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/report_sharp.svg b/outputs/icons/charts/report_sharp.svg deleted file mode 100644 index 8ea546c5..00000000 --- a/outputs/icons/charts/report_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/table_round.svg b/outputs/icons/charts/table_round.svg deleted file mode 100644 index 4c8e93ec..00000000 --- a/outputs/icons/charts/table_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/charts/table_sharp.svg b/outputs/icons/charts/table_sharp.svg deleted file mode 100644 index 4c8e93ec..00000000 --- a/outputs/icons/charts/table_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/add_call_round.svg b/outputs/icons/communication/add_call_round.svg deleted file mode 100644 index ccd24652..00000000 --- a/outputs/icons/communication/add_call_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/add_call_sharp.svg b/outputs/icons/communication/add_call_sharp.svg deleted file mode 100644 index f9149e0e..00000000 --- a/outputs/icons/communication/add_call_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/audio_round.svg b/outputs/icons/communication/audio_round.svg deleted file mode 100644 index 59c7c114..00000000 --- a/outputs/icons/communication/audio_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/audio_sharp.svg b/outputs/icons/communication/audio_sharp.svg deleted file mode 100644 index 59c7c114..00000000 --- a/outputs/icons/communication/audio_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/basket_round.svg b/outputs/icons/communication/basket_round.svg deleted file mode 100644 index bcbec4d9..00000000 --- a/outputs/icons/communication/basket_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/basket_sharp.svg b/outputs/icons/communication/basket_sharp.svg deleted file mode 100644 index bcbec4d9..00000000 --- a/outputs/icons/communication/basket_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/block_round.svg b/outputs/icons/communication/block_round.svg deleted file mode 100644 index 31aebc3a..00000000 --- a/outputs/icons/communication/block_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/block_sharp.svg b/outputs/icons/communication/block_sharp.svg deleted file mode 100644 index e0f6f5c5..00000000 --- a/outputs/icons/communication/block_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/broadcast_round.svg b/outputs/icons/communication/broadcast_round.svg deleted file mode 100644 index c0ffe0cc..00000000 --- a/outputs/icons/communication/broadcast_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/broadcast_sharp.svg b/outputs/icons/communication/broadcast_sharp.svg deleted file mode 100644 index c0ffe0cc..00000000 --- a/outputs/icons/communication/broadcast_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/call_back_round.svg b/outputs/icons/communication/call_back_round.svg deleted file mode 100644 index d382b7ef..00000000 --- a/outputs/icons/communication/call_back_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/call_back_sharp.svg b/outputs/icons/communication/call_back_sharp.svg deleted file mode 100644 index 5dbb6ad7..00000000 --- a/outputs/icons/communication/call_back_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_bot_round.svg b/outputs/icons/communication/chat_bot_round.svg deleted file mode 100644 index ae5a07c3..00000000 --- a/outputs/icons/communication/chat_bot_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_bot_sharp.svg b/outputs/icons/communication/chat_bot_sharp.svg deleted file mode 100644 index ae5a07c3..00000000 --- a/outputs/icons/communication/chat_bot_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_bubble_outline_round.svg b/outputs/icons/communication/chat_bubble_outline_round.svg deleted file mode 100644 index f4e50845..00000000 --- a/outputs/icons/communication/chat_bubble_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_bubble_outline_sharp.svg b/outputs/icons/communication/chat_bubble_outline_sharp.svg deleted file mode 100644 index 97eeca6d..00000000 --- a/outputs/icons/communication/chat_bubble_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_bubble_round.svg b/outputs/icons/communication/chat_bubble_round.svg deleted file mode 100644 index 0413529c..00000000 --- a/outputs/icons/communication/chat_bubble_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_bubble_sharp.svg b/outputs/icons/communication/chat_bubble_sharp.svg deleted file mode 100644 index a7a476bd..00000000 --- a/outputs/icons/communication/chat_bubble_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_message_read_round.svg b/outputs/icons/communication/chat_message_read_round.svg deleted file mode 100644 index a59e1b8d..00000000 --- a/outputs/icons/communication/chat_message_read_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_message_read_sharp.svg b/outputs/icons/communication/chat_message_read_sharp.svg deleted file mode 100644 index a59e1b8d..00000000 --- a/outputs/icons/communication/chat_message_read_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_message_unread_round.svg b/outputs/icons/communication/chat_message_unread_round.svg deleted file mode 100644 index f0fa79aa..00000000 --- a/outputs/icons/communication/chat_message_unread_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_message_unread_sharp.svg b/outputs/icons/communication/chat_message_unread_sharp.svg deleted file mode 100644 index f0fa79aa..00000000 --- a/outputs/icons/communication/chat_message_unread_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_round.svg b/outputs/icons/communication/chat_round.svg deleted file mode 100644 index 4a8e7c69..00000000 --- a/outputs/icons/communication/chat_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_search_round.svg b/outputs/icons/communication/chat_search_round.svg deleted file mode 100644 index 45003487..00000000 --- a/outputs/icons/communication/chat_search_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_search_sharp.svg b/outputs/icons/communication/chat_search_sharp.svg deleted file mode 100644 index 45003487..00000000 --- a/outputs/icons/communication/chat_search_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/chat_sharp.svg b/outputs/icons/communication/chat_sharp.svg deleted file mode 100644 index 4a8e7c69..00000000 --- a/outputs/icons/communication/chat_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/conversation_round.svg b/outputs/icons/communication/conversation_round.svg deleted file mode 100644 index 5bdf5a29..00000000 --- a/outputs/icons/communication/conversation_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/conversation_sharp.svg b/outputs/icons/communication/conversation_sharp.svg deleted file mode 100644 index 48a5ebc6..00000000 --- a/outputs/icons/communication/conversation_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/dialpad_round.svg b/outputs/icons/communication/dialpad_round.svg deleted file mode 100644 index 95709cc8..00000000 --- a/outputs/icons/communication/dialpad_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/dialpad_sharp.svg b/outputs/icons/communication/dialpad_sharp.svg deleted file mode 100644 index e3ade82c..00000000 --- a/outputs/icons/communication/dialpad_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/dollar_round.svg b/outputs/icons/communication/dollar_round.svg deleted file mode 100644 index 9079e1c6..00000000 --- a/outputs/icons/communication/dollar_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/dollar_sharp.svg b/outputs/icons/communication/dollar_sharp.svg deleted file mode 100644 index 8ecdc026..00000000 --- a/outputs/icons/communication/dollar_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/email_alt_round.svg b/outputs/icons/communication/email_alt_round.svg deleted file mode 100644 index 42b044f0..00000000 --- a/outputs/icons/communication/email_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/email_alt_sharp.svg b/outputs/icons/communication/email_alt_sharp.svg deleted file mode 100644 index c150796c..00000000 --- a/outputs/icons/communication/email_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/email_reply_all_round.svg b/outputs/icons/communication/email_reply_all_round.svg deleted file mode 100644 index e26f8d20..00000000 --- a/outputs/icons/communication/email_reply_all_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/email_reply_all_sharp.svg b/outputs/icons/communication/email_reply_all_sharp.svg deleted file mode 100644 index e26f8d20..00000000 --- a/outputs/icons/communication/email_reply_all_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/end_call_round.svg b/outputs/icons/communication/end_call_round.svg deleted file mode 100644 index d7abb323..00000000 --- a/outputs/icons/communication/end_call_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/end_call_sharp.svg b/outputs/icons/communication/end_call_sharp.svg deleted file mode 100644 index c66ae1d8..00000000 --- a/outputs/icons/communication/end_call_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/forward_round.svg b/outputs/icons/communication/forward_round.svg deleted file mode 100644 index de73ea32..00000000 --- a/outputs/icons/communication/forward_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/forward_sharp.svg b/outputs/icons/communication/forward_sharp.svg deleted file mode 100644 index de73ea32..00000000 --- a/outputs/icons/communication/forward_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/gif_round.svg b/outputs/icons/communication/gif_round.svg deleted file mode 100644 index caf55db7..00000000 --- a/outputs/icons/communication/gif_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/gif_sharp.svg b/outputs/icons/communication/gif_sharp.svg deleted file mode 100644 index caf55db7..00000000 --- a/outputs/icons/communication/gif_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/headset_round.svg b/outputs/icons/communication/headset_round.svg deleted file mode 100644 index 0faa6262..00000000 --- a/outputs/icons/communication/headset_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/headset_sharp.svg b/outputs/icons/communication/headset_sharp.svg deleted file mode 100644 index 0faa6262..00000000 --- a/outputs/icons/communication/headset_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/hourglass_round.svg b/outputs/icons/communication/hourglass_round.svg deleted file mode 100644 index dc0bb721..00000000 --- a/outputs/icons/communication/hourglass_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/hourglass_sharp.svg b/outputs/icons/communication/hourglass_sharp.svg deleted file mode 100644 index dc0bb721..00000000 --- a/outputs/icons/communication/hourglass_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/inbox_round.svg b/outputs/icons/communication/inbox_round.svg deleted file mode 100644 index fb20c434..00000000 --- a/outputs/icons/communication/inbox_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/inbox_sharp.svg b/outputs/icons/communication/inbox_sharp.svg deleted file mode 100644 index fb20c434..00000000 --- a/outputs/icons/communication/inbox_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/lightbulb_round.svg b/outputs/icons/communication/lightbulb_round.svg deleted file mode 100644 index 09f47c3e..00000000 --- a/outputs/icons/communication/lightbulb_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/lightbulb_sharp.svg b/outputs/icons/communication/lightbulb_sharp.svg deleted file mode 100644 index 09f47c3e..00000000 --- a/outputs/icons/communication/lightbulb_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/location_off_round.svg b/outputs/icons/communication/location_off_round.svg deleted file mode 100644 index 5109f6b0..00000000 --- a/outputs/icons/communication/location_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/location_off_sharp.svg b/outputs/icons/communication/location_off_sharp.svg deleted file mode 100644 index 5109f6b0..00000000 --- a/outputs/icons/communication/location_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/message_round.svg b/outputs/icons/communication/message_round.svg deleted file mode 100644 index 3005b7ec..00000000 --- a/outputs/icons/communication/message_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/message_sharp.svg b/outputs/icons/communication/message_sharp.svg deleted file mode 100644 index 6e3a3625..00000000 --- a/outputs/icons/communication/message_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/navigate_round.svg b/outputs/icons/communication/navigate_round.svg deleted file mode 100644 index d2c017d9..00000000 --- a/outputs/icons/communication/navigate_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/navigate_sharp.svg b/outputs/icons/communication/navigate_sharp.svg deleted file mode 100644 index d2c017d9..00000000 --- a/outputs/icons/communication/navigate_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/new_chat_round.svg b/outputs/icons/communication/new_chat_round.svg deleted file mode 100644 index 8d2f813f..00000000 --- a/outputs/icons/communication/new_chat_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/new_chat_sharp.svg b/outputs/icons/communication/new_chat_sharp.svg deleted file mode 100644 index 8d2f813f..00000000 --- a/outputs/icons/communication/new_chat_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/notifications_off_round.svg b/outputs/icons/communication/notifications_off_round.svg deleted file mode 100644 index 23bfc9d4..00000000 --- a/outputs/icons/communication/notifications_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/notifications_off_sharp.svg b/outputs/icons/communication/notifications_off_sharp.svg deleted file mode 100644 index 23bfc9d4..00000000 --- a/outputs/icons/communication/notifications_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/palette_round.svg b/outputs/icons/communication/palette_round.svg deleted file mode 100644 index d76b4e99..00000000 --- a/outputs/icons/communication/palette_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/palette_sharp.svg b/outputs/icons/communication/palette_sharp.svg deleted file mode 100644 index d76b4e99..00000000 --- a/outputs/icons/communication/palette_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/person_search_round.svg b/outputs/icons/communication/person_search_round.svg deleted file mode 100644 index 72884811..00000000 --- a/outputs/icons/communication/person_search_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/person_search_sharp.svg b/outputs/icons/communication/person_search_sharp.svg deleted file mode 100644 index 0974ee91..00000000 --- a/outputs/icons/communication/person_search_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/phone_bluetooth_speaker_round.svg b/outputs/icons/communication/phone_bluetooth_speaker_round.svg deleted file mode 100644 index 17f5afaf..00000000 --- a/outputs/icons/communication/phone_bluetooth_speaker_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/phone_bluetooth_speaker_sharp.svg b/outputs/icons/communication/phone_bluetooth_speaker_sharp.svg deleted file mode 100644 index 707a0eb8..00000000 --- a/outputs/icons/communication/phone_bluetooth_speaker_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/phone_in_talk_round.svg b/outputs/icons/communication/phone_in_talk_round.svg deleted file mode 100644 index c5829885..00000000 --- a/outputs/icons/communication/phone_in_talk_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/phone_in_talk_sharp.svg b/outputs/icons/communication/phone_in_talk_sharp.svg deleted file mode 100644 index c673debb..00000000 --- a/outputs/icons/communication/phone_in_talk_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/phone_round.svg b/outputs/icons/communication/phone_round.svg deleted file mode 100644 index 476334bb..00000000 --- a/outputs/icons/communication/phone_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/phone_sharp.svg b/outputs/icons/communication/phone_sharp.svg deleted file mode 100644 index 6aec312b..00000000 --- a/outputs/icons/communication/phone_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/point_token_round.svg b/outputs/icons/communication/point_token_round.svg deleted file mode 100644 index 399e3381..00000000 --- a/outputs/icons/communication/point_token_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/point_token_sharp.svg b/outputs/icons/communication/point_token_sharp.svg deleted file mode 100644 index 399e3381..00000000 --- a/outputs/icons/communication/point_token_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/priority_round.svg b/outputs/icons/communication/priority_round.svg deleted file mode 100644 index 0d110263..00000000 --- a/outputs/icons/communication/priority_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/priority_sharp.svg b/outputs/icons/communication/priority_sharp.svg deleted file mode 100644 index 57efa3d6..00000000 --- a/outputs/icons/communication/priority_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/ptt_round.svg b/outputs/icons/communication/ptt_round.svg deleted file mode 100644 index bc58e2f6..00000000 --- a/outputs/icons/communication/ptt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/ptt_sharp.svg b/outputs/icons/communication/ptt_sharp.svg deleted file mode 100644 index bc58e2f6..00000000 --- a/outputs/icons/communication/ptt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/qr_code_round.svg b/outputs/icons/communication/qr_code_round.svg deleted file mode 100644 index e97b0583..00000000 --- a/outputs/icons/communication/qr_code_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/qr_code_sharp.svg b/outputs/icons/communication/qr_code_sharp.svg deleted file mode 100644 index 64d5d554..00000000 --- a/outputs/icons/communication/qr_code_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/react_add_round.svg b/outputs/icons/communication/react_add_round.svg deleted file mode 100644 index 9db82d65..00000000 --- a/outputs/icons/communication/react_add_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/react_add_sharp.svg b/outputs/icons/communication/react_add_sharp.svg deleted file mode 100644 index 9db82d65..00000000 --- a/outputs/icons/communication/react_add_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/react_thumbsup_round.svg b/outputs/icons/communication/react_thumbsup_round.svg deleted file mode 100644 index 4bfee743..00000000 --- a/outputs/icons/communication/react_thumbsup_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/react_thumbsup_sharp.svg b/outputs/icons/communication/react_thumbsup_sharp.svg deleted file mode 100644 index 4bfee743..00000000 --- a/outputs/icons/communication/react_thumbsup_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/recording_round.svg b/outputs/icons/communication/recording_round.svg deleted file mode 100644 index a2875959..00000000 --- a/outputs/icons/communication/recording_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/recording_sharp.svg b/outputs/icons/communication/recording_sharp.svg deleted file mode 100644 index a2875959..00000000 --- a/outputs/icons/communication/recording_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/rss_feed_round.svg b/outputs/icons/communication/rss_feed_round.svg deleted file mode 100644 index e878373f..00000000 --- a/outputs/icons/communication/rss_feed_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/rss_feed_sharp.svg b/outputs/icons/communication/rss_feed_sharp.svg deleted file mode 100644 index dd9bf897..00000000 --- a/outputs/icons/communication/rss_feed_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sd_card_round.svg b/outputs/icons/communication/sd_card_round.svg deleted file mode 100644 index cfe1201f..00000000 --- a/outputs/icons/communication/sd_card_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sd_card_sharp.svg b/outputs/icons/communication/sd_card_sharp.svg deleted file mode 100644 index 928fc34f..00000000 --- a/outputs/icons/communication/sd_card_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sim_card_round.svg b/outputs/icons/communication/sim_card_round.svg deleted file mode 100644 index 04c010cd..00000000 --- a/outputs/icons/communication/sim_card_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sim_card_sharp.svg b/outputs/icons/communication/sim_card_sharp.svg deleted file mode 100644 index 2864ff57..00000000 --- a/outputs/icons/communication/sim_card_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sms_round.svg b/outputs/icons/communication/sms_round.svg deleted file mode 100644 index 3db0068a..00000000 --- a/outputs/icons/communication/sms_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sms_sharp.svg b/outputs/icons/communication/sms_sharp.svg deleted file mode 100644 index f6c52b4b..00000000 --- a/outputs/icons/communication/sms_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/snooze_round.svg b/outputs/icons/communication/snooze_round.svg deleted file mode 100644 index 095b3c13..00000000 --- a/outputs/icons/communication/snooze_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/snooze_sharp.svg b/outputs/icons/communication/snooze_sharp.svg deleted file mode 100644 index 095b3c13..00000000 --- a/outputs/icons/communication/snooze_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sticker_round.svg b/outputs/icons/communication/sticker_round.svg deleted file mode 100644 index 396eeeda..00000000 --- a/outputs/icons/communication/sticker_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sticker_sharp.svg b/outputs/icons/communication/sticker_sharp.svg deleted file mode 100644 index 396eeeda..00000000 --- a/outputs/icons/communication/sticker_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/subscribe_round.svg b/outputs/icons/communication/subscribe_round.svg deleted file mode 100644 index 0b288414..00000000 --- a/outputs/icons/communication/subscribe_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/subscribe_sharp.svg b/outputs/icons/communication/subscribe_sharp.svg deleted file mode 100644 index 0b288414..00000000 --- a/outputs/icons/communication/subscribe_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sync_disabled_round.svg b/outputs/icons/communication/sync_disabled_round.svg deleted file mode 100644 index c01bdb4f..00000000 --- a/outputs/icons/communication/sync_disabled_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sync_disabled_sharp.svg b/outputs/icons/communication/sync_disabled_sharp.svg deleted file mode 100644 index c522185b..00000000 --- a/outputs/icons/communication/sync_disabled_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sync_round.svg b/outputs/icons/communication/sync_round.svg deleted file mode 100644 index 843792fc..00000000 --- a/outputs/icons/communication/sync_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/sync_sharp.svg b/outputs/icons/communication/sync_sharp.svg deleted file mode 100644 index 7f534dd4..00000000 --- a/outputs/icons/communication/sync_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/unsubscribe_round.svg b/outputs/icons/communication/unsubscribe_round.svg deleted file mode 100644 index 48616ade..00000000 --- a/outputs/icons/communication/unsubscribe_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/communication/unsubscribe_sharp.svg b/outputs/icons/communication/unsubscribe_sharp.svg deleted file mode 100644 index 48616ade..00000000 --- a/outputs/icons/communication/unsubscribe_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_box_round.svg b/outputs/icons/content/add_box_round.svg deleted file mode 100644 index 9c4c31f0..00000000 --- a/outputs/icons/content/add_box_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_box_sharp.svg b/outputs/icons/content/add_box_sharp.svg deleted file mode 100644 index 08185391..00000000 --- a/outputs/icons/content/add_box_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_circle_outline_round.svg b/outputs/icons/content/add_circle_outline_round.svg deleted file mode 100644 index f2047abf..00000000 --- a/outputs/icons/content/add_circle_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_circle_outline_sharp.svg b/outputs/icons/content/add_circle_outline_sharp.svg deleted file mode 100644 index 1282ede2..00000000 --- a/outputs/icons/content/add_circle_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_circle_round.svg b/outputs/icons/content/add_circle_round.svg deleted file mode 100644 index e660d3ab..00000000 --- a/outputs/icons/content/add_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_circle_sharp.svg b/outputs/icons/content/add_circle_sharp.svg deleted file mode 100644 index a6c43458..00000000 --- a/outputs/icons/content/add_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_round.svg b/outputs/icons/content/add_round.svg deleted file mode 100644 index 0b7f8ce5..00000000 --- a/outputs/icons/content/add_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/add_sharp.svg b/outputs/icons/content/add_sharp.svg deleted file mode 100644 index 0bb1c374..00000000 --- a/outputs/icons/content/add_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/android_round.svg b/outputs/icons/content/android_round.svg deleted file mode 100644 index 48fd080e..00000000 --- a/outputs/icons/content/android_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/android_sharp.svg b/outputs/icons/content/android_sharp.svg deleted file mode 100644 index 3e9b23b6..00000000 --- a/outputs/icons/content/android_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/backspace_round.svg b/outputs/icons/content/backspace_round.svg deleted file mode 100644 index 57461c56..00000000 --- a/outputs/icons/content/backspace_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/backspace_sharp.svg b/outputs/icons/content/backspace_sharp.svg deleted file mode 100644 index 54cd4106..00000000 --- a/outputs/icons/content/backspace_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/block_content_round.svg b/outputs/icons/content/block_content_round.svg deleted file mode 100644 index 3adaa0f9..00000000 --- a/outputs/icons/content/block_content_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/block_content_sharp.svg b/outputs/icons/content/block_content_sharp.svg deleted file mode 100644 index 46872323..00000000 --- a/outputs/icons/content/block_content_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/chart_pie_content_round.svg b/outputs/icons/content/chart_pie_content_round.svg deleted file mode 100644 index 58d0a227..00000000 --- a/outputs/icons/content/chart_pie_content_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/chart_pie_content_sharp.svg b/outputs/icons/content/chart_pie_content_sharp.svg deleted file mode 100644 index 58d0a227..00000000 --- a/outputs/icons/content/chart_pie_content_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/content_round.svg b/outputs/icons/content/content_round.svg deleted file mode 100644 index f79c2c20..00000000 --- a/outputs/icons/content/content_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/content_sharp.svg b/outputs/icons/content/content_sharp.svg deleted file mode 100644 index 8f73d422..00000000 --- a/outputs/icons/content/content_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/copy_file_round.svg b/outputs/icons/content/copy_file_round.svg deleted file mode 100644 index 3dc24ca7..00000000 --- a/outputs/icons/content/copy_file_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/copy_file_sharp.svg b/outputs/icons/content/copy_file_sharp.svg deleted file mode 100644 index 501202ab..00000000 --- a/outputs/icons/content/copy_file_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/email_outline_round.svg b/outputs/icons/content/email_outline_round.svg deleted file mode 100644 index 1bb8f646..00000000 --- a/outputs/icons/content/email_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/email_outline_sharp.svg b/outputs/icons/content/email_outline_sharp.svg deleted file mode 100644 index de67d3fc..00000000 --- a/outputs/icons/content/email_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/email_round.svg b/outputs/icons/content/email_round.svg deleted file mode 100644 index ca0b7371..00000000 --- a/outputs/icons/content/email_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/email_sharp.svg b/outputs/icons/content/email_sharp.svg deleted file mode 100644 index e12f26ef..00000000 --- a/outputs/icons/content/email_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/flag_round.svg b/outputs/icons/content/flag_round.svg deleted file mode 100644 index 24b9cc6d..00000000 --- a/outputs/icons/content/flag_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/flag_sharp.svg b/outputs/icons/content/flag_sharp.svg deleted file mode 100644 index c18bbb31..00000000 --- a/outputs/icons/content/flag_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/push_pin_round.svg b/outputs/icons/content/push_pin_round.svg deleted file mode 100644 index ed34f6e4..00000000 --- a/outputs/icons/content/push_pin_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/push_pin_sharp.svg b/outputs/icons/content/push_pin_sharp.svg deleted file mode 100644 index 5355d094..00000000 --- a/outputs/icons/content/push_pin_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/redo_round.svg b/outputs/icons/content/redo_round.svg deleted file mode 100644 index 9cc473de..00000000 --- a/outputs/icons/content/redo_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/redo_sharp.svg b/outputs/icons/content/redo_sharp.svg deleted file mode 100644 index af126276..00000000 --- a/outputs/icons/content/redo_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_box_round.svg b/outputs/icons/content/remove_box_round.svg deleted file mode 100644 index 76337c47..00000000 --- a/outputs/icons/content/remove_box_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_box_sharp.svg b/outputs/icons/content/remove_box_sharp.svg deleted file mode 100644 index 40536447..00000000 --- a/outputs/icons/content/remove_box_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_circle_outline_round.svg b/outputs/icons/content/remove_circle_outline_round.svg deleted file mode 100644 index 4c8f3ce6..00000000 --- a/outputs/icons/content/remove_circle_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_circle_outline_sharp.svg b/outputs/icons/content/remove_circle_outline_sharp.svg deleted file mode 100644 index 74c2f2a2..00000000 --- a/outputs/icons/content/remove_circle_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_circle_round.svg b/outputs/icons/content/remove_circle_round.svg deleted file mode 100644 index 6d8554ff..00000000 --- a/outputs/icons/content/remove_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_circle_sharp.svg b/outputs/icons/content/remove_circle_sharp.svg deleted file mode 100644 index 4434d3ad..00000000 --- a/outputs/icons/content/remove_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_round.svg b/outputs/icons/content/remove_round.svg deleted file mode 100644 index d02096b0..00000000 --- a/outputs/icons/content/remove_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/remove_sharp.svg b/outputs/icons/content/remove_sharp.svg deleted file mode 100644 index d6f3d7f6..00000000 --- a/outputs/icons/content/remove_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/reply_round.svg b/outputs/icons/content/reply_round.svg deleted file mode 100644 index 2375cba3..00000000 --- a/outputs/icons/content/reply_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/reply_sharp.svg b/outputs/icons/content/reply_sharp.svg deleted file mode 100644 index 20a36570..00000000 --- a/outputs/icons/content/reply_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/save_alt_round.svg b/outputs/icons/content/save_alt_round.svg deleted file mode 100644 index b2e79b0b..00000000 --- a/outputs/icons/content/save_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/save_alt_sharp.svg b/outputs/icons/content/save_alt_sharp.svg deleted file mode 100644 index 50f15643..00000000 --- a/outputs/icons/content/save_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/save_content_round.svg b/outputs/icons/content/save_content_round.svg deleted file mode 100644 index d8c41f6a..00000000 --- a/outputs/icons/content/save_content_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/save_content_sharp.svg b/outputs/icons/content/save_content_sharp.svg deleted file mode 100644 index b272f5b8..00000000 --- a/outputs/icons/content/save_content_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/send_round.svg b/outputs/icons/content/send_round.svg deleted file mode 100644 index 4a16b2b9..00000000 --- a/outputs/icons/content/send_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/send_sharp.svg b/outputs/icons/content/send_sharp.svg deleted file mode 100644 index 13bca017..00000000 --- a/outputs/icons/content/send_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/sort_content_round.svg b/outputs/icons/content/sort_content_round.svg deleted file mode 100644 index b0f24840..00000000 --- a/outputs/icons/content/sort_content_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/sort_content_sharp.svg b/outputs/icons/content/sort_content_sharp.svg deleted file mode 100644 index 9d27885f..00000000 --- a/outputs/icons/content/sort_content_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/undo_round.svg b/outputs/icons/content/undo_round.svg deleted file mode 100644 index abac4cc7..00000000 --- a/outputs/icons/content/undo_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/content/undo_sharp.svg b/outputs/icons/content/undo_sharp.svg deleted file mode 100644 index 9b4e0ae2..00000000 --- a/outputs/icons/content/undo_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/calendar_gantt_round.svg b/outputs/icons/date_time/calendar_gantt_round.svg deleted file mode 100644 index b7d9c48c..00000000 --- a/outputs/icons/date_time/calendar_gantt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/calendar_gantt_sharp.svg b/outputs/icons/date_time/calendar_gantt_sharp.svg deleted file mode 100644 index b7d9c48c..00000000 --- a/outputs/icons/date_time/calendar_gantt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/calendar_next_round.svg b/outputs/icons/date_time/calendar_next_round.svg deleted file mode 100644 index 62606fdb..00000000 --- a/outputs/icons/date_time/calendar_next_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/calendar_next_sharp.svg b/outputs/icons/date_time/calendar_next_sharp.svg deleted file mode 100644 index 62606fdb..00000000 --- a/outputs/icons/date_time/calendar_next_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/calendar_rollover_round.svg b/outputs/icons/date_time/calendar_rollover_round.svg deleted file mode 100644 index b0085d53..00000000 --- a/outputs/icons/date_time/calendar_rollover_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/calendar_rollover_sharp.svg b/outputs/icons/date_time/calendar_rollover_sharp.svg deleted file mode 100644 index b0085d53..00000000 --- a/outputs/icons/date_time/calendar_rollover_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_available_round.svg b/outputs/icons/date_time/clock_available_round.svg deleted file mode 100644 index bf266f90..00000000 --- a/outputs/icons/date_time/clock_available_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_available_sharp.svg b/outputs/icons/date_time/clock_available_sharp.svg deleted file mode 100644 index bf266f90..00000000 --- a/outputs/icons/date_time/clock_available_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_bid_round.svg b/outputs/icons/date_time/clock_bid_round.svg deleted file mode 100644 index 33e34642..00000000 --- a/outputs/icons/date_time/clock_bid_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_bid_sharp.svg b/outputs/icons/date_time/clock_bid_sharp.svg deleted file mode 100644 index 33e34642..00000000 --- a/outputs/icons/date_time/clock_bid_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_edit_round.svg b/outputs/icons/date_time/clock_edit_round.svg deleted file mode 100644 index 9d4deac1..00000000 --- a/outputs/icons/date_time/clock_edit_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_edit_sharp.svg b/outputs/icons/date_time/clock_edit_sharp.svg deleted file mode 100644 index 9d4deac1..00000000 --- a/outputs/icons/date_time/clock_edit_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_flexible_round.svg b/outputs/icons/date_time/clock_flexible_round.svg deleted file mode 100644 index 9b7fb597..00000000 --- a/outputs/icons/date_time/clock_flexible_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_flexible_sharp.svg b/outputs/icons/date_time/clock_flexible_sharp.svg deleted file mode 100644 index 9b7fb597..00000000 --- a/outputs/icons/date_time/clock_flexible_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_in_progress_round.svg b/outputs/icons/date_time/clock_in_progress_round.svg deleted file mode 100644 index 7b63d4bc..00000000 --- a/outputs/icons/date_time/clock_in_progress_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_in_progress_sharp.svg b/outputs/icons/date_time/clock_in_progress_sharp.svg deleted file mode 100644 index 7b63d4bc..00000000 --- a/outputs/icons/date_time/clock_in_progress_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_info_round.svg b/outputs/icons/date_time/clock_info_round.svg deleted file mode 100644 index 9fde06fe..00000000 --- a/outputs/icons/date_time/clock_info_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_info_sharp.svg b/outputs/icons/date_time/clock_info_sharp.svg deleted file mode 100644 index 9fde06fe..00000000 --- a/outputs/icons/date_time/clock_info_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_missed_round.svg b/outputs/icons/date_time/clock_missed_round.svg deleted file mode 100644 index 14ffa825..00000000 --- a/outputs/icons/date_time/clock_missed_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_missed_sharp.svg b/outputs/icons/date_time/clock_missed_sharp.svg deleted file mode 100644 index 14ffa825..00000000 --- a/outputs/icons/date_time/clock_missed_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_on_round.svg b/outputs/icons/date_time/clock_on_round.svg deleted file mode 100644 index 2da5d9e4..00000000 --- a/outputs/icons/date_time/clock_on_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_on_sharp.svg b/outputs/icons/date_time/clock_on_sharp.svg deleted file mode 100644 index 2da5d9e4..00000000 --- a/outputs/icons/date_time/clock_on_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_rollover_round.svg b/outputs/icons/date_time/clock_rollover_round.svg deleted file mode 100644 index 6223fef0..00000000 --- a/outputs/icons/date_time/clock_rollover_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_rollover_sharp.svg b/outputs/icons/date_time/clock_rollover_sharp.svg deleted file mode 100644 index 6223fef0..00000000 --- a/outputs/icons/date_time/clock_rollover_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_segment_round.svg b/outputs/icons/date_time/clock_segment_round.svg deleted file mode 100644 index 28328173..00000000 --- a/outputs/icons/date_time/clock_segment_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_segment_sharp.svg b/outputs/icons/date_time/clock_segment_sharp.svg deleted file mode 100644 index 28328173..00000000 --- a/outputs/icons/date_time/clock_segment_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_start_round.svg b/outputs/icons/date_time/clock_start_round.svg deleted file mode 100644 index f025f3b6..00000000 --- a/outputs/icons/date_time/clock_start_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_start_sharp.svg b/outputs/icons/date_time/clock_start_sharp.svg deleted file mode 100644 index f025f3b6..00000000 --- a/outputs/icons/date_time/clock_start_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_stop_round.svg b/outputs/icons/date_time/clock_stop_round.svg deleted file mode 100644 index 1e98202b..00000000 --- a/outputs/icons/date_time/clock_stop_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_stop_sharp.svg b/outputs/icons/date_time/clock_stop_sharp.svg deleted file mode 100644 index 1e98202b..00000000 --- a/outputs/icons/date_time/clock_stop_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_switch_round.svg b/outputs/icons/date_time/clock_switch_round.svg deleted file mode 100644 index c622a62e..00000000 --- a/outputs/icons/date_time/clock_switch_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_switch_sharp.svg b/outputs/icons/date_time/clock_switch_sharp.svg deleted file mode 100644 index c622a62e..00000000 --- a/outputs/icons/date_time/clock_switch_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_timer_round.svg b/outputs/icons/date_time/clock_timer_round.svg deleted file mode 100644 index 8357325d..00000000 --- a/outputs/icons/date_time/clock_timer_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_timer_sharp.svg b/outputs/icons/date_time/clock_timer_sharp.svg deleted file mode 100644 index 8357325d..00000000 --- a/outputs/icons/date_time/clock_timer_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_upcoming_round.svg b/outputs/icons/date_time/clock_upcoming_round.svg deleted file mode 100644 index ad5ea4ce..00000000 --- a/outputs/icons/date_time/clock_upcoming_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/clock_upcoming_sharp.svg b/outputs/icons/date_time/clock_upcoming_sharp.svg deleted file mode 100644 index ad5ea4ce..00000000 --- a/outputs/icons/date_time/clock_upcoming_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/meal_round.svg b/outputs/icons/date_time/meal_round.svg deleted file mode 100644 index 02f64504..00000000 --- a/outputs/icons/date_time/meal_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/meal_sharp.svg b/outputs/icons/date_time/meal_sharp.svg deleted file mode 100644 index 02f64504..00000000 --- a/outputs/icons/date_time/meal_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/schedule_round.svg b/outputs/icons/date_time/schedule_round.svg deleted file mode 100644 index 492aad57..00000000 --- a/outputs/icons/date_time/schedule_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/schedule_sharp.svg b/outputs/icons/date_time/schedule_sharp.svg deleted file mode 100644 index 492aad57..00000000 --- a/outputs/icons/date_time/schedule_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/timecard_approve_round.svg b/outputs/icons/date_time/timecard_approve_round.svg deleted file mode 100644 index ea5256ba..00000000 --- a/outputs/icons/date_time/timecard_approve_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/timecard_approve_sharp.svg b/outputs/icons/date_time/timecard_approve_sharp.svg deleted file mode 100644 index ea5256ba..00000000 --- a/outputs/icons/date_time/timecard_approve_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/timecard_round.svg b/outputs/icons/date_time/timecard_round.svg deleted file mode 100644 index f9748336..00000000 --- a/outputs/icons/date_time/timecard_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/timecard_sharp.svg b/outputs/icons/date_time/timecard_sharp.svg deleted file mode 100644 index f9748336..00000000 --- a/outputs/icons/date_time/timecard_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/timecard_warning_round.svg b/outputs/icons/date_time/timecard_warning_round.svg deleted file mode 100644 index 69cb192d..00000000 --- a/outputs/icons/date_time/timecard_warning_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/date_time/timecard_warning_sharp.svg b/outputs/icons/date_time/timecard_warning_sharp.svg deleted file mode 100644 index 69cb192d..00000000 --- a/outputs/icons/date_time/timecard_warning_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/antenna_round.svg b/outputs/icons/device/antenna_round.svg deleted file mode 100644 index 5e93e9fa..00000000 --- a/outputs/icons/device/antenna_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/antenna_sharp.svg b/outputs/icons/device/antenna_sharp.svg deleted file mode 100644 index 428162bc..00000000 --- a/outputs/icons/device/antenna_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/battery_alert_round.svg b/outputs/icons/device/battery_alert_round.svg deleted file mode 100644 index daae5663..00000000 --- a/outputs/icons/device/battery_alert_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/battery_alert_sharp.svg b/outputs/icons/device/battery_alert_sharp.svg deleted file mode 100644 index 2b178794..00000000 --- a/outputs/icons/device/battery_alert_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/battery_charging_round.svg b/outputs/icons/device/battery_charging_round.svg deleted file mode 100644 index bf9165d0..00000000 --- a/outputs/icons/device/battery_charging_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/battery_charging_sharp.svg b/outputs/icons/device/battery_charging_sharp.svg deleted file mode 100644 index afe890f8..00000000 --- a/outputs/icons/device/battery_charging_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/battery_round.svg b/outputs/icons/device/battery_round.svg deleted file mode 100644 index 22026689..00000000 --- a/outputs/icons/device/battery_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/battery_sharp.svg b/outputs/icons/device/battery_sharp.svg deleted file mode 100644 index 3fd0d0e1..00000000 --- a/outputs/icons/device/battery_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/bluetooth_disabled_round.svg b/outputs/icons/device/bluetooth_disabled_round.svg deleted file mode 100644 index 8c335169..00000000 --- a/outputs/icons/device/bluetooth_disabled_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/bluetooth_disabled_sharp.svg b/outputs/icons/device/bluetooth_disabled_sharp.svg deleted file mode 100644 index 18d169a0..00000000 --- a/outputs/icons/device/bluetooth_disabled_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/bluetooth_round.svg b/outputs/icons/device/bluetooth_round.svg deleted file mode 100644 index 00f6a667..00000000 --- a/outputs/icons/device/bluetooth_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/bluetooth_searching_round.svg b/outputs/icons/device/bluetooth_searching_round.svg deleted file mode 100644 index 0bd2c6ab..00000000 --- a/outputs/icons/device/bluetooth_searching_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/bluetooth_searching_sharp.svg b/outputs/icons/device/bluetooth_searching_sharp.svg deleted file mode 100644 index f34ed561..00000000 --- a/outputs/icons/device/bluetooth_searching_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/bluetooth_sharp.svg b/outputs/icons/device/bluetooth_sharp.svg deleted file mode 100644 index 35fde319..00000000 --- a/outputs/icons/device/bluetooth_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/brightness_round.svg b/outputs/icons/device/brightness_round.svg deleted file mode 100644 index 00510994..00000000 --- a/outputs/icons/device/brightness_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/brightness_sharp.svg b/outputs/icons/device/brightness_sharp.svg deleted file mode 100644 index a321969a..00000000 --- a/outputs/icons/device/brightness_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/cellular_signal_round.svg b/outputs/icons/device/cellular_signal_round.svg deleted file mode 100644 index cfd3180c..00000000 --- a/outputs/icons/device/cellular_signal_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/cellular_signal_sharp.svg b/outputs/icons/device/cellular_signal_sharp.svg deleted file mode 100644 index f064e6f6..00000000 --- a/outputs/icons/device/cellular_signal_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/chain_round.svg b/outputs/icons/device/chain_round.svg deleted file mode 100644 index d2091a05..00000000 --- a/outputs/icons/device/chain_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/chain_sharp.svg b/outputs/icons/device/chain_sharp.svg deleted file mode 100644 index 6facdf49..00000000 --- a/outputs/icons/device/chain_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/contrast_round.svg b/outputs/icons/device/contrast_round.svg deleted file mode 100644 index 048c42e4..00000000 --- a/outputs/icons/device/contrast_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/contrast_sharp.svg b/outputs/icons/device/contrast_sharp.svg deleted file mode 100644 index bed01a05..00000000 --- a/outputs/icons/device/contrast_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/dark_mode_round.svg b/outputs/icons/device/dark_mode_round.svg deleted file mode 100644 index ebe2b785..00000000 --- a/outputs/icons/device/dark_mode_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/dark_mode_sharp.svg b/outputs/icons/device/dark_mode_sharp.svg deleted file mode 100644 index 66c5a933..00000000 --- a/outputs/icons/device/dark_mode_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/devices_round.svg b/outputs/icons/device/devices_round.svg deleted file mode 100644 index 5e9d1a97..00000000 --- a/outputs/icons/device/devices_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/devices_sharp.svg b/outputs/icons/device/devices_sharp.svg deleted file mode 100644 index a1ef7f3e..00000000 --- a/outputs/icons/device/devices_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/ethernet_round.svg b/outputs/icons/device/ethernet_round.svg deleted file mode 100644 index 914359c9..00000000 --- a/outputs/icons/device/ethernet_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/ethernet_sharp.svg b/outputs/icons/device/ethernet_sharp.svg deleted file mode 100644 index dd2eda87..00000000 --- a/outputs/icons/device/ethernet_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/flight_mode_round.svg b/outputs/icons/device/flight_mode_round.svg deleted file mode 100644 index 33af83d7..00000000 --- a/outputs/icons/device/flight_mode_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/flight_mode_sharp.svg b/outputs/icons/device/flight_mode_sharp.svg deleted file mode 100644 index 33b26c39..00000000 --- a/outputs/icons/device/flight_mode_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/hdmi_round.svg b/outputs/icons/device/hdmi_round.svg deleted file mode 100644 index 89895d9d..00000000 --- a/outputs/icons/device/hdmi_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/hdmi_sharp.svg b/outputs/icons/device/hdmi_sharp.svg deleted file mode 100644 index 14d3532b..00000000 --- a/outputs/icons/device/hdmi_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/light_mode_round.svg b/outputs/icons/device/light_mode_round.svg deleted file mode 100644 index 10c520a8..00000000 --- a/outputs/icons/device/light_mode_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/light_mode_sharp.svg b/outputs/icons/device/light_mode_sharp.svg deleted file mode 100644 index 87b78ebe..00000000 --- a/outputs/icons/device/light_mode_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/location_point_round.svg b/outputs/icons/device/location_point_round.svg deleted file mode 100644 index 1e3eead0..00000000 --- a/outputs/icons/device/location_point_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/location_point_sharp.svg b/outputs/icons/device/location_point_sharp.svg deleted file mode 100644 index e14b79ff..00000000 --- a/outputs/icons/device/location_point_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/location_round.svg b/outputs/icons/device/location_round.svg deleted file mode 100644 index f38684ec..00000000 --- a/outputs/icons/device/location_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/location_sharp.svg b/outputs/icons/device/location_sharp.svg deleted file mode 100644 index 99a7a7a6..00000000 --- a/outputs/icons/device/location_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/mobile_friendly_round.svg b/outputs/icons/device/mobile_friendly_round.svg deleted file mode 100644 index e0aab283..00000000 --- a/outputs/icons/device/mobile_friendly_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/mobile_friendly_sharp.svg b/outputs/icons/device/mobile_friendly_sharp.svg deleted file mode 100644 index d11b94ba..00000000 --- a/outputs/icons/device/mobile_friendly_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/network_signal_round.svg b/outputs/icons/device/network_signal_round.svg deleted file mode 100644 index e4a23b4c..00000000 --- a/outputs/icons/device/network_signal_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/network_signal_sharp.svg b/outputs/icons/device/network_signal_sharp.svg deleted file mode 100644 index 3df620e9..00000000 --- a/outputs/icons/device/network_signal_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/nfc_round.svg b/outputs/icons/device/nfc_round.svg deleted file mode 100644 index f768b58b..00000000 --- a/outputs/icons/device/nfc_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/nfc_sharp.svg b/outputs/icons/device/nfc_sharp.svg deleted file mode 100644 index 8f5465a1..00000000 --- a/outputs/icons/device/nfc_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/night_round.svg b/outputs/icons/device/night_round.svg deleted file mode 100644 index 3c8dd1b4..00000000 --- a/outputs/icons/device/night_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/night_sharp.svg b/outputs/icons/device/night_sharp.svg deleted file mode 100644 index f3697389..00000000 --- a/outputs/icons/device/night_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/restart_alt_round.svg b/outputs/icons/device/restart_alt_round.svg deleted file mode 100644 index b0e2fbd1..00000000 --- a/outputs/icons/device/restart_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/restart_alt_sharp.svg b/outputs/icons/device/restart_alt_sharp.svg deleted file mode 100644 index 058cbc11..00000000 --- a/outputs/icons/device/restart_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/screen_rotation_round.svg b/outputs/icons/device/screen_rotation_round.svg deleted file mode 100644 index 4126d118..00000000 --- a/outputs/icons/device/screen_rotation_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/screen_rotation_sharp.svg b/outputs/icons/device/screen_rotation_sharp.svg deleted file mode 100644 index 34c0294e..00000000 --- a/outputs/icons/device/screen_rotation_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/uhf_rfid_round.svg b/outputs/icons/device/uhf_rfid_round.svg deleted file mode 100644 index 21b83918..00000000 --- a/outputs/icons/device/uhf_rfid_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/uhf_rfid_sharp.svg b/outputs/icons/device/uhf_rfid_sharp.svg deleted file mode 100644 index e1dadac2..00000000 --- a/outputs/icons/device/uhf_rfid_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/usb_alt_device_round.svg b/outputs/icons/device/usb_alt_device_round.svg deleted file mode 100644 index 24748f5a..00000000 --- a/outputs/icons/device/usb_alt_device_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/usb_alt_device_sharp.svg b/outputs/icons/device/usb_alt_device_sharp.svg deleted file mode 100644 index b7e77133..00000000 --- a/outputs/icons/device/usb_alt_device_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/usb_alt_round.svg b/outputs/icons/device/usb_alt_round.svg deleted file mode 100644 index cbd39b2a..00000000 --- a/outputs/icons/device/usb_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/usb_alt_sharp.svg b/outputs/icons/device/usb_alt_sharp.svg deleted file mode 100644 index 6c521064..00000000 --- a/outputs/icons/device/usb_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/usb_round.svg b/outputs/icons/device/usb_round.svg deleted file mode 100644 index 8c023f34..00000000 --- a/outputs/icons/device/usb_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/usb_sharp.svg b/outputs/icons/device/usb_sharp.svg deleted file mode 100644 index eb1bef7e..00000000 --- a/outputs/icons/device/usb_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/volte_round.svg b/outputs/icons/device/volte_round.svg deleted file mode 100644 index 0003620e..00000000 --- a/outputs/icons/device/volte_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/device/volte_sharp.svg b/outputs/icons/device/volte_sharp.svg deleted file mode 100644 index 9ff77c24..00000000 --- a/outputs/icons/device/volte_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_center_round.svg b/outputs/icons/editor/align_center_round.svg deleted file mode 100644 index dca76940..00000000 --- a/outputs/icons/editor/align_center_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_center_sharp.svg b/outputs/icons/editor/align_center_sharp.svg deleted file mode 100644 index 22060160..00000000 --- a/outputs/icons/editor/align_center_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_horizontal_center_round.svg b/outputs/icons/editor/align_horizontal_center_round.svg deleted file mode 100644 index e3d5462a..00000000 --- a/outputs/icons/editor/align_horizontal_center_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_horizontal_center_sharp.svg b/outputs/icons/editor/align_horizontal_center_sharp.svg deleted file mode 100644 index 93080747..00000000 --- a/outputs/icons/editor/align_horizontal_center_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_horizontal_left_round.svg b/outputs/icons/editor/align_horizontal_left_round.svg deleted file mode 100644 index 3fc21785..00000000 --- a/outputs/icons/editor/align_horizontal_left_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_horizontal_left_sharp.svg b/outputs/icons/editor/align_horizontal_left_sharp.svg deleted file mode 100644 index 5b44db87..00000000 --- a/outputs/icons/editor/align_horizontal_left_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_horizontal_right_round.svg b/outputs/icons/editor/align_horizontal_right_round.svg deleted file mode 100644 index c69e36aa..00000000 --- a/outputs/icons/editor/align_horizontal_right_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_horizontal_right_sharp.svg b/outputs/icons/editor/align_horizontal_right_sharp.svg deleted file mode 100644 index f0193a84..00000000 --- a/outputs/icons/editor/align_horizontal_right_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_left_round.svg b/outputs/icons/editor/align_left_round.svg deleted file mode 100644 index 720e6f02..00000000 --- a/outputs/icons/editor/align_left_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_left_sharp.svg b/outputs/icons/editor/align_left_sharp.svg deleted file mode 100644 index 67faf147..00000000 --- a/outputs/icons/editor/align_left_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_right_round.svg b/outputs/icons/editor/align_right_round.svg deleted file mode 100644 index 6ad9583a..00000000 --- a/outputs/icons/editor/align_right_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_right_sharp.svg b/outputs/icons/editor/align_right_sharp.svg deleted file mode 100644 index 4c21cbe8..00000000 --- a/outputs/icons/editor/align_right_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_vertical_bottom_round.svg b/outputs/icons/editor/align_vertical_bottom_round.svg deleted file mode 100644 index 485911eb..00000000 --- a/outputs/icons/editor/align_vertical_bottom_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_vertical_bottom_sharp.svg b/outputs/icons/editor/align_vertical_bottom_sharp.svg deleted file mode 100644 index fb26b262..00000000 --- a/outputs/icons/editor/align_vertical_bottom_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_vertical_center_round.svg b/outputs/icons/editor/align_vertical_center_round.svg deleted file mode 100644 index 373adfaf..00000000 --- a/outputs/icons/editor/align_vertical_center_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_vertical_center_sharp.svg b/outputs/icons/editor/align_vertical_center_sharp.svg deleted file mode 100644 index 1616681e..00000000 --- a/outputs/icons/editor/align_vertical_center_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_vertical_top_round.svg b/outputs/icons/editor/align_vertical_top_round.svg deleted file mode 100644 index 9cc1a727..00000000 --- a/outputs/icons/editor/align_vertical_top_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/align_vertical_top_sharp.svg b/outputs/icons/editor/align_vertical_top_sharp.svg deleted file mode 100644 index 527c615d..00000000 --- a/outputs/icons/editor/align_vertical_top_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/attachment_round.svg b/outputs/icons/editor/attachment_round.svg deleted file mode 100644 index ff949c81..00000000 --- a/outputs/icons/editor/attachment_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/attachment_sharp.svg b/outputs/icons/editor/attachment_sharp.svg deleted file mode 100644 index 28f2462c..00000000 --- a/outputs/icons/editor/attachment_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/bold_round.svg b/outputs/icons/editor/bold_round.svg deleted file mode 100644 index 7fb22257..00000000 --- a/outputs/icons/editor/bold_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/bold_sharp.svg b/outputs/icons/editor/bold_sharp.svg deleted file mode 100644 index ebb12638..00000000 --- a/outputs/icons/editor/bold_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/bullet_list_round.svg b/outputs/icons/editor/bullet_list_round.svg deleted file mode 100644 index 91b05109..00000000 --- a/outputs/icons/editor/bullet_list_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/bullet_list_sharp.svg b/outputs/icons/editor/bullet_list_sharp.svg deleted file mode 100644 index d483ee38..00000000 --- a/outputs/icons/editor/bullet_list_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/checklist_round.svg b/outputs/icons/editor/checklist_round.svg deleted file mode 100644 index dcb6bf4e..00000000 --- a/outputs/icons/editor/checklist_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/checklist_sharp.svg b/outputs/icons/editor/checklist_sharp.svg deleted file mode 100644 index 381093a6..00000000 --- a/outputs/icons/editor/checklist_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/color_fill_round.svg b/outputs/icons/editor/color_fill_round.svg deleted file mode 100644 index 916301a6..00000000 --- a/outputs/icons/editor/color_fill_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/color_fill_sharp.svg b/outputs/icons/editor/color_fill_sharp.svg deleted file mode 100644 index e0a068cc..00000000 --- a/outputs/icons/editor/color_fill_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/distribute_horizontal_round.svg b/outputs/icons/editor/distribute_horizontal_round.svg deleted file mode 100644 index 557c9c75..00000000 --- a/outputs/icons/editor/distribute_horizontal_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/distribute_horizontal_sharp.svg b/outputs/icons/editor/distribute_horizontal_sharp.svg deleted file mode 100644 index edf5ca6c..00000000 --- a/outputs/icons/editor/distribute_horizontal_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/distribute_vertical_round.svg b/outputs/icons/editor/distribute_vertical_round.svg deleted file mode 100644 index 5a50b07b..00000000 --- a/outputs/icons/editor/distribute_vertical_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/distribute_vertical_sharp.svg b/outputs/icons/editor/distribute_vertical_sharp.svg deleted file mode 100644 index 900e79ad..00000000 --- a/outputs/icons/editor/distribute_vertical_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/edit_border_round.svg b/outputs/icons/editor/edit_border_round.svg deleted file mode 100644 index 189a3795..00000000 --- a/outputs/icons/editor/edit_border_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/edit_border_sharp.svg b/outputs/icons/editor/edit_border_sharp.svg deleted file mode 100644 index bf3301fd..00000000 --- a/outputs/icons/editor/edit_border_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/edit_round.svg b/outputs/icons/editor/edit_round.svg deleted file mode 100644 index 50259aed..00000000 --- a/outputs/icons/editor/edit_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/edit_sharp.svg b/outputs/icons/editor/edit_sharp.svg deleted file mode 100644 index 3c37911e..00000000 --- a/outputs/icons/editor/edit_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/font_size_decrease_round.svg b/outputs/icons/editor/font_size_decrease_round.svg deleted file mode 100644 index d17b7429..00000000 --- a/outputs/icons/editor/font_size_decrease_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/font_size_decrease_sharp.svg b/outputs/icons/editor/font_size_decrease_sharp.svg deleted file mode 100644 index 6e616ccc..00000000 --- a/outputs/icons/editor/font_size_decrease_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/font_size_increase_round.svg b/outputs/icons/editor/font_size_increase_round.svg deleted file mode 100644 index 0a50b150..00000000 --- a/outputs/icons/editor/font_size_increase_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/font_size_increase_sharp.svg b/outputs/icons/editor/font_size_increase_sharp.svg deleted file mode 100644 index 074ec579..00000000 --- a/outputs/icons/editor/font_size_increase_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/format_shapes_round.svg b/outputs/icons/editor/format_shapes_round.svg deleted file mode 100644 index 8c1b48c8..00000000 --- a/outputs/icons/editor/format_shapes_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/format_shapes_sharp.svg b/outputs/icons/editor/format_shapes_sharp.svg deleted file mode 100644 index 649db620..00000000 --- a/outputs/icons/editor/format_shapes_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/indent_decrease_round.svg b/outputs/icons/editor/indent_decrease_round.svg deleted file mode 100644 index ce19ca53..00000000 --- a/outputs/icons/editor/indent_decrease_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/indent_decrease_sharp.svg b/outputs/icons/editor/indent_decrease_sharp.svg deleted file mode 100644 index 3e9a9d0f..00000000 --- a/outputs/icons/editor/indent_decrease_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/indent_increase_round.svg b/outputs/icons/editor/indent_increase_round.svg deleted file mode 100644 index ef385faa..00000000 --- a/outputs/icons/editor/indent_increase_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/indent_increase_sharp.svg b/outputs/icons/editor/indent_increase_sharp.svg deleted file mode 100644 index 796a3338..00000000 --- a/outputs/icons/editor/indent_increase_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/italic_round.svg b/outputs/icons/editor/italic_round.svg deleted file mode 100644 index 86f25cea..00000000 --- a/outputs/icons/editor/italic_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/italic_sharp.svg b/outputs/icons/editor/italic_sharp.svg deleted file mode 100644 index b419e04d..00000000 --- a/outputs/icons/editor/italic_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/justify_round.svg b/outputs/icons/editor/justify_round.svg deleted file mode 100644 index 9efce413..00000000 --- a/outputs/icons/editor/justify_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/justify_sharp.svg b/outputs/icons/editor/justify_sharp.svg deleted file mode 100644 index fcbb961a..00000000 --- a/outputs/icons/editor/justify_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/line_spacing_round.svg b/outputs/icons/editor/line_spacing_round.svg deleted file mode 100644 index f238b8d9..00000000 --- a/outputs/icons/editor/line_spacing_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/line_spacing_sharp.svg b/outputs/icons/editor/line_spacing_sharp.svg deleted file mode 100644 index 3764f508..00000000 --- a/outputs/icons/editor/line_spacing_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/link_round.svg b/outputs/icons/editor/link_round.svg deleted file mode 100644 index edd021c8..00000000 --- a/outputs/icons/editor/link_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/link_sharp.svg b/outputs/icons/editor/link_sharp.svg deleted file mode 100644 index 3e7ea63f..00000000 --- a/outputs/icons/editor/link_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/no_color_round.svg b/outputs/icons/editor/no_color_round.svg deleted file mode 100644 index f9f66cd3..00000000 --- a/outputs/icons/editor/no_color_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/no_color_sharp.svg b/outputs/icons/editor/no_color_sharp.svg deleted file mode 100644 index 30fb34b1..00000000 --- a/outputs/icons/editor/no_color_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/numbered_list_round.svg b/outputs/icons/editor/numbered_list_round.svg deleted file mode 100644 index 655e189f..00000000 --- a/outputs/icons/editor/numbered_list_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/numbered_list_sharp.svg b/outputs/icons/editor/numbered_list_sharp.svg deleted file mode 100644 index 1216f8f0..00000000 --- a/outputs/icons/editor/numbered_list_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/strikethrough_round.svg b/outputs/icons/editor/strikethrough_round.svg deleted file mode 100644 index ee6804c6..00000000 --- a/outputs/icons/editor/strikethrough_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/strikethrough_sharp.svg b/outputs/icons/editor/strikethrough_sharp.svg deleted file mode 100644 index 823303a7..00000000 --- a/outputs/icons/editor/strikethrough_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/text_color_round.svg b/outputs/icons/editor/text_color_round.svg deleted file mode 100644 index 22ec02dc..00000000 --- a/outputs/icons/editor/text_color_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/text_color_sharp.svg b/outputs/icons/editor/text_color_sharp.svg deleted file mode 100644 index 9f1322f3..00000000 --- a/outputs/icons/editor/text_color_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/type_round.svg b/outputs/icons/editor/type_round.svg deleted file mode 100644 index 03f46a3e..00000000 --- a/outputs/icons/editor/type_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/type_sharp.svg b/outputs/icons/editor/type_sharp.svg deleted file mode 100644 index 66d3ab36..00000000 --- a/outputs/icons/editor/type_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/underline_round.svg b/outputs/icons/editor/underline_round.svg deleted file mode 100644 index 4bfc5e06..00000000 --- a/outputs/icons/editor/underline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/editor/underline_sharp.svg b/outputs/icons/editor/underline_sharp.svg deleted file mode 100644 index c9ffa6c5..00000000 --- a/outputs/icons/editor/underline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_bluetooth_round.svg b/outputs/icons/enterprise/barcode_bluetooth_round.svg deleted file mode 100644 index 34fcd4da..00000000 --- a/outputs/icons/enterprise/barcode_bluetooth_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_bluetooth_sharp.svg b/outputs/icons/enterprise/barcode_bluetooth_sharp.svg deleted file mode 100644 index 34fcd4da..00000000 --- a/outputs/icons/enterprise/barcode_bluetooth_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_done_round.svg b/outputs/icons/enterprise/barcode_done_round.svg deleted file mode 100644 index 1cbf9288..00000000 --- a/outputs/icons/enterprise/barcode_done_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_done_sharp.svg b/outputs/icons/enterprise/barcode_done_sharp.svg deleted file mode 100644 index 1cbf9288..00000000 --- a/outputs/icons/enterprise/barcode_done_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_image_scan_round.svg b/outputs/icons/enterprise/barcode_image_scan_round.svg deleted file mode 100644 index 931cefce..00000000 --- a/outputs/icons/enterprise/barcode_image_scan_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_image_scan_sharp.svg b/outputs/icons/enterprise/barcode_image_scan_sharp.svg deleted file mode 100644 index 931cefce..00000000 --- a/outputs/icons/enterprise/barcode_image_scan_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_qr_code_round.svg b/outputs/icons/enterprise/barcode_qr_code_round.svg deleted file mode 100644 index 48e0d3d4..00000000 --- a/outputs/icons/enterprise/barcode_qr_code_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_qr_code_sharp.svg b/outputs/icons/enterprise/barcode_qr_code_sharp.svg deleted file mode 100644 index 48e0d3d4..00000000 --- a/outputs/icons/enterprise/barcode_qr_code_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_round.svg b/outputs/icons/enterprise/barcode_round.svg deleted file mode 100644 index ef00ea0c..00000000 --- a/outputs/icons/enterprise/barcode_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_scanner_down_round.svg b/outputs/icons/enterprise/barcode_scanner_down_round.svg deleted file mode 100644 index 0a8c9020..00000000 --- a/outputs/icons/enterprise/barcode_scanner_down_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_scanner_down_sharp.svg b/outputs/icons/enterprise/barcode_scanner_down_sharp.svg deleted file mode 100644 index 0a8c9020..00000000 --- a/outputs/icons/enterprise/barcode_scanner_down_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_settings_round.svg b/outputs/icons/enterprise/barcode_settings_round.svg deleted file mode 100644 index 0bbdea21..00000000 --- a/outputs/icons/enterprise/barcode_settings_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_settings_sharp.svg b/outputs/icons/enterprise/barcode_settings_sharp.svg deleted file mode 100644 index 0bbdea21..00000000 --- a/outputs/icons/enterprise/barcode_settings_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/barcode_sharp.svg b/outputs/icons/enterprise/barcode_sharp.svg deleted file mode 100644 index ef00ea0c..00000000 --- a/outputs/icons/enterprise/barcode_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/calculator_round.svg b/outputs/icons/enterprise/calculator_round.svg deleted file mode 100644 index ee3794b8..00000000 --- a/outputs/icons/enterprise/calculator_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/calculator_sharp.svg b/outputs/icons/enterprise/calculator_sharp.svg deleted file mode 100644 index ee3794b8..00000000 --- a/outputs/icons/enterprise/calculator_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/card_orientation_round.svg b/outputs/icons/enterprise/card_orientation_round.svg deleted file mode 100644 index 18dec2e7..00000000 --- a/outputs/icons/enterprise/card_orientation_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/card_orientation_sharp.svg b/outputs/icons/enterprise/card_orientation_sharp.svg deleted file mode 100644 index 18dec2e7..00000000 --- a/outputs/icons/enterprise/card_orientation_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/card_with_chip_round.svg b/outputs/icons/enterprise/card_with_chip_round.svg deleted file mode 100644 index 142cd42b..00000000 --- a/outputs/icons/enterprise/card_with_chip_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/card_with_chip_sharp.svg b/outputs/icons/enterprise/card_with_chip_sharp.svg deleted file mode 100644 index 142cd42b..00000000 --- a/outputs/icons/enterprise/card_with_chip_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/certificate_round.svg b/outputs/icons/enterprise/certificate_round.svg deleted file mode 100644 index 83ee927d..00000000 --- a/outputs/icons/enterprise/certificate_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/certificate_sharp.svg b/outputs/icons/enterprise/certificate_sharp.svg deleted file mode 100644 index 83ee927d..00000000 --- a/outputs/icons/enterprise/certificate_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/chart_filled_enterprise_round.svg b/outputs/icons/enterprise/chart_filled_enterprise_round.svg deleted file mode 100644 index 590f45f9..00000000 --- a/outputs/icons/enterprise/chart_filled_enterprise_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/chart_filled_enterprise_sharp.svg b/outputs/icons/enterprise/chart_filled_enterprise_sharp.svg deleted file mode 100644 index 41079112..00000000 --- a/outputs/icons/enterprise/chart_filled_enterprise_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/choices_round.svg b/outputs/icons/enterprise/choices_round.svg deleted file mode 100644 index c96e3d3b..00000000 --- a/outputs/icons/enterprise/choices_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/choices_sharp.svg b/outputs/icons/enterprise/choices_sharp.svg deleted file mode 100644 index 8ca370c8..00000000 --- a/outputs/icons/enterprise/choices_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/contactless_pay_round.svg b/outputs/icons/enterprise/contactless_pay_round.svg deleted file mode 100644 index 92685fb1..00000000 --- a/outputs/icons/enterprise/contactless_pay_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/contactless_pay_sharp.svg b/outputs/icons/enterprise/contactless_pay_sharp.svg deleted file mode 100644 index 92685fb1..00000000 --- a/outputs/icons/enterprise/contactless_pay_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/credit_card_swipe_round.svg b/outputs/icons/enterprise/credit_card_swipe_round.svg deleted file mode 100644 index 52bacf70..00000000 --- a/outputs/icons/enterprise/credit_card_swipe_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/credit_card_swipe_sharp.svg b/outputs/icons/enterprise/credit_card_swipe_sharp.svg deleted file mode 100644 index 52bacf70..00000000 --- a/outputs/icons/enterprise/credit_card_swipe_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/eas_round.svg b/outputs/icons/enterprise/eas_round.svg deleted file mode 100644 index 5c30c4ed..00000000 --- a/outputs/icons/enterprise/eas_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/eas_sharp.svg b/outputs/icons/enterprise/eas_sharp.svg deleted file mode 100644 index 17530062..00000000 --- a/outputs/icons/enterprise/eas_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/enterprise_diagnostics_round.svg b/outputs/icons/enterprise/enterprise_diagnostics_round.svg deleted file mode 100644 index 1bd5aada..00000000 --- a/outputs/icons/enterprise/enterprise_diagnostics_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/enterprise_diagnostics_sharp.svg b/outputs/icons/enterprise/enterprise_diagnostics_sharp.svg deleted file mode 100644 index 1bd5aada..00000000 --- a/outputs/icons/enterprise/enterprise_diagnostics_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/environmental_round.svg b/outputs/icons/enterprise/environmental_round.svg deleted file mode 100644 index 9932b915..00000000 --- a/outputs/icons/enterprise/environmental_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/environmental_sharp.svg b/outputs/icons/enterprise/environmental_sharp.svg deleted file mode 100644 index 9932b915..00000000 --- a/outputs/icons/enterprise/environmental_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/factory_round.svg b/outputs/icons/enterprise/factory_round.svg deleted file mode 100644 index 82d21c4d..00000000 --- a/outputs/icons/enterprise/factory_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/factory_sharp.svg b/outputs/icons/enterprise/factory_sharp.svg deleted file mode 100644 index 82d21c4d..00000000 --- a/outputs/icons/enterprise/factory_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/freezer_round.svg b/outputs/icons/enterprise/freezer_round.svg deleted file mode 100644 index a32a9c73..00000000 --- a/outputs/icons/enterprise/freezer_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/freezer_sharp.svg b/outputs/icons/enterprise/freezer_sharp.svg deleted file mode 100644 index a32a9c73..00000000 --- a/outputs/icons/enterprise/freezer_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/issue_audit_round.svg b/outputs/icons/enterprise/issue_audit_round.svg deleted file mode 100644 index 101f6581..00000000 --- a/outputs/icons/enterprise/issue_audit_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/issue_audit_sharp.svg b/outputs/icons/enterprise/issue_audit_sharp.svg deleted file mode 100644 index 101f6581..00000000 --- a/outputs/icons/enterprise/issue_audit_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/planogram_round.svg b/outputs/icons/enterprise/planogram_round.svg deleted file mode 100644 index 7c522898..00000000 --- a/outputs/icons/enterprise/planogram_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/planogram_sharp.svg b/outputs/icons/enterprise/planogram_sharp.svg deleted file mode 100644 index 7c522898..00000000 --- a/outputs/icons/enterprise/planogram_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/productivity_apps_round.svg b/outputs/icons/enterprise/productivity_apps_round.svg deleted file mode 100644 index e7708de3..00000000 --- a/outputs/icons/enterprise/productivity_apps_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/productivity_apps_sharp.svg b/outputs/icons/enterprise/productivity_apps_sharp.svg deleted file mode 100644 index e7708de3..00000000 --- a/outputs/icons/enterprise/productivity_apps_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/receipt_round.svg b/outputs/icons/enterprise/receipt_round.svg deleted file mode 100644 index fd8a6420..00000000 --- a/outputs/icons/enterprise/receipt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/receipt_sharp.svg b/outputs/icons/enterprise/receipt_sharp.svg deleted file mode 100644 index fd8a6420..00000000 --- a/outputs/icons/enterprise/receipt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/road_map_round.svg b/outputs/icons/enterprise/road_map_round.svg deleted file mode 100644 index b20e9c73..00000000 --- a/outputs/icons/enterprise/road_map_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/road_map_sharp.svg b/outputs/icons/enterprise/road_map_sharp.svg deleted file mode 100644 index b20e9c73..00000000 --- a/outputs/icons/enterprise/road_map_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/rules_round.svg b/outputs/icons/enterprise/rules_round.svg deleted file mode 100644 index 6508f61f..00000000 --- a/outputs/icons/enterprise/rules_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/rules_sharp.svg b/outputs/icons/enterprise/rules_sharp.svg deleted file mode 100644 index 6508f61f..00000000 --- a/outputs/icons/enterprise/rules_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/scan_rate_round.svg b/outputs/icons/enterprise/scan_rate_round.svg deleted file mode 100644 index 36112f9e..00000000 --- a/outputs/icons/enterprise/scan_rate_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/scan_rate_sharp.svg b/outputs/icons/enterprise/scan_rate_sharp.svg deleted file mode 100644 index 36112f9e..00000000 --- a/outputs/icons/enterprise/scan_rate_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/shape_recognition_round.svg b/outputs/icons/enterprise/shape_recognition_round.svg deleted file mode 100644 index f6304e55..00000000 --- a/outputs/icons/enterprise/shape_recognition_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/shape_recognition_sharp.svg b/outputs/icons/enterprise/shape_recognition_sharp.svg deleted file mode 100644 index f6304e55..00000000 --- a/outputs/icons/enterprise/shape_recognition_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/solutions_round.svg b/outputs/icons/enterprise/solutions_round.svg deleted file mode 100644 index 87796d9e..00000000 --- a/outputs/icons/enterprise/solutions_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/solutions_sharp.svg b/outputs/icons/enterprise/solutions_sharp.svg deleted file mode 100644 index 87796d9e..00000000 --- a/outputs/icons/enterprise/solutions_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/steps_round.svg b/outputs/icons/enterprise/steps_round.svg deleted file mode 100644 index 702a2a27..00000000 --- a/outputs/icons/enterprise/steps_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/steps_sharp.svg b/outputs/icons/enterprise/steps_sharp.svg deleted file mode 100644 index d66c800b..00000000 --- a/outputs/icons/enterprise/steps_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/strategy_round.svg b/outputs/icons/enterprise/strategy_round.svg deleted file mode 100644 index 94b49997..00000000 --- a/outputs/icons/enterprise/strategy_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/strategy_sharp.svg b/outputs/icons/enterprise/strategy_sharp.svg deleted file mode 100644 index 94b49997..00000000 --- a/outputs/icons/enterprise/strategy_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/tag_enterprise_round.svg b/outputs/icons/enterprise/tag_enterprise_round.svg deleted file mode 100644 index b31fda6f..00000000 --- a/outputs/icons/enterprise/tag_enterprise_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/tag_enterprise_sharp.svg b/outputs/icons/enterprise/tag_enterprise_sharp.svg deleted file mode 100644 index f29dcbdd..00000000 --- a/outputs/icons/enterprise/tag_enterprise_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/tap_to_pay_round.svg b/outputs/icons/enterprise/tap_to_pay_round.svg deleted file mode 100644 index 583da12c..00000000 --- a/outputs/icons/enterprise/tap_to_pay_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/tap_to_pay_sharp.svg b/outputs/icons/enterprise/tap_to_pay_sharp.svg deleted file mode 100644 index 583da12c..00000000 --- a/outputs/icons/enterprise/tap_to_pay_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/zero_scale_round.svg b/outputs/icons/enterprise/zero_scale_round.svg deleted file mode 100644 index ad2764af..00000000 --- a/outputs/icons/enterprise/zero_scale_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/enterprise/zero_scale_sharp.svg b/outputs/icons/enterprise/zero_scale_sharp.svg deleted file mode 100644 index 64a46bb8..00000000 --- a/outputs/icons/enterprise/zero_scale_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_done_round.svg b/outputs/icons/file/cloud_done_round.svg deleted file mode 100644 index 5c3cc9c4..00000000 --- a/outputs/icons/file/cloud_done_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_done_sharp.svg b/outputs/icons/file/cloud_done_sharp.svg deleted file mode 100644 index 1363a541..00000000 --- a/outputs/icons/file/cloud_done_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_download_round.svg b/outputs/icons/file/cloud_download_round.svg deleted file mode 100644 index d25bade6..00000000 --- a/outputs/icons/file/cloud_download_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_download_sharp.svg b/outputs/icons/file/cloud_download_sharp.svg deleted file mode 100644 index b426a44d..00000000 --- a/outputs/icons/file/cloud_download_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_off_round.svg b/outputs/icons/file/cloud_off_round.svg deleted file mode 100644 index ece8996f..00000000 --- a/outputs/icons/file/cloud_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_off_sharp.svg b/outputs/icons/file/cloud_off_sharp.svg deleted file mode 100644 index b19fe094..00000000 --- a/outputs/icons/file/cloud_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_outline_round.svg b/outputs/icons/file/cloud_outline_round.svg deleted file mode 100644 index e120b9f9..00000000 --- a/outputs/icons/file/cloud_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_outline_sharp.svg b/outputs/icons/file/cloud_outline_sharp.svg deleted file mode 100644 index c907549c..00000000 --- a/outputs/icons/file/cloud_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_round.svg b/outputs/icons/file/cloud_round.svg deleted file mode 100644 index 5300ee70..00000000 --- a/outputs/icons/file/cloud_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_sharp.svg b/outputs/icons/file/cloud_sharp.svg deleted file mode 100644 index 930ab7db..00000000 --- a/outputs/icons/file/cloud_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_upload_round.svg b/outputs/icons/file/cloud_upload_round.svg deleted file mode 100644 index 14203076..00000000 --- a/outputs/icons/file/cloud_upload_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/cloud_upload_sharp.svg b/outputs/icons/file/cloud_upload_sharp.svg deleted file mode 100644 index 1a874eb8..00000000 --- a/outputs/icons/file/cloud_upload_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/create_new_folder_round.svg b/outputs/icons/file/create_new_folder_round.svg deleted file mode 100644 index a6575439..00000000 --- a/outputs/icons/file/create_new_folder_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/create_new_folder_sharp.svg b/outputs/icons/file/create_new_folder_sharp.svg deleted file mode 100644 index bd4f00dd..00000000 --- a/outputs/icons/file/create_new_folder_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/doc_attach_round.svg b/outputs/icons/file/doc_attach_round.svg deleted file mode 100644 index 5cc4be03..00000000 --- a/outputs/icons/file/doc_attach_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/doc_attach_sharp.svg b/outputs/icons/file/doc_attach_sharp.svg deleted file mode 100644 index 99b2c456..00000000 --- a/outputs/icons/file/doc_attach_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/downloading_round.svg b/outputs/icons/file/downloading_round.svg deleted file mode 100644 index ae83d369..00000000 --- a/outputs/icons/file/downloading_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/downloading_sharp.svg b/outputs/icons/file/downloading_sharp.svg deleted file mode 100644 index 1f0fc43f..00000000 --- a/outputs/icons/file/downloading_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/file_round.svg b/outputs/icons/file/file_round.svg deleted file mode 100644 index faf48c47..00000000 --- a/outputs/icons/file/file_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/file_sharp.svg b/outputs/icons/file/file_sharp.svg deleted file mode 100644 index faf48c47..00000000 --- a/outputs/icons/file/file_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/finished_download_round.svg b/outputs/icons/file/finished_download_round.svg deleted file mode 100644 index bc99567f..00000000 --- a/outputs/icons/file/finished_download_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/finished_download_sharp.svg b/outputs/icons/file/finished_download_sharp.svg deleted file mode 100644 index 0bbf7945..00000000 --- a/outputs/icons/file/finished_download_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/folder_file_round.svg b/outputs/icons/file/folder_file_round.svg deleted file mode 100644 index 4b5eda5b..00000000 --- a/outputs/icons/file/folder_file_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/folder_file_sharp.svg b/outputs/icons/file/folder_file_sharp.svg deleted file mode 100644 index 4b5eda5b..00000000 --- a/outputs/icons/file/folder_file_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/folder_outline_round.svg b/outputs/icons/file/folder_outline_round.svg deleted file mode 100644 index ac074f16..00000000 --- a/outputs/icons/file/folder_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/folder_outline_sharp.svg b/outputs/icons/file/folder_outline_sharp.svg deleted file mode 100644 index 0f16d041..00000000 --- a/outputs/icons/file/folder_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/folder_round.svg b/outputs/icons/file/folder_round.svg deleted file mode 100644 index b7f9e6e5..00000000 --- a/outputs/icons/file/folder_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/folder_sharp.svg b/outputs/icons/file/folder_sharp.svg deleted file mode 100644 index 60eb02f8..00000000 --- a/outputs/icons/file/folder_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/grid_view_round.svg b/outputs/icons/file/grid_view_round.svg deleted file mode 100644 index 005689c4..00000000 --- a/outputs/icons/file/grid_view_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/grid_view_sharp.svg b/outputs/icons/file/grid_view_sharp.svg deleted file mode 100644 index 124935fc..00000000 --- a/outputs/icons/file/grid_view_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/jpg_attach_round.svg b/outputs/icons/file/jpg_attach_round.svg deleted file mode 100644 index e851573b..00000000 --- a/outputs/icons/file/jpg_attach_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/jpg_attach_sharp.svg b/outputs/icons/file/jpg_attach_sharp.svg deleted file mode 100644 index d261dad3..00000000 --- a/outputs/icons/file/jpg_attach_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/maintenance_round.svg b/outputs/icons/file/maintenance_round.svg deleted file mode 100644 index afa8e65d..00000000 --- a/outputs/icons/file/maintenance_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/maintenance_sharp.svg b/outputs/icons/file/maintenance_sharp.svg deleted file mode 100644 index afa8e65d..00000000 --- a/outputs/icons/file/maintenance_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/open_new_off_round.svg b/outputs/icons/file/open_new_off_round.svg deleted file mode 100644 index 1d28def2..00000000 --- a/outputs/icons/file/open_new_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/open_new_off_sharp.svg b/outputs/icons/file/open_new_off_sharp.svg deleted file mode 100644 index 1d28def2..00000000 --- a/outputs/icons/file/open_new_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/page_height_round.svg b/outputs/icons/file/page_height_round.svg deleted file mode 100644 index 47f8a3bb..00000000 --- a/outputs/icons/file/page_height_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/page_height_sharp.svg b/outputs/icons/file/page_height_sharp.svg deleted file mode 100644 index 47f8a3bb..00000000 --- a/outputs/icons/file/page_height_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/page_rotate_round.svg b/outputs/icons/file/page_rotate_round.svg deleted file mode 100644 index 5688e164..00000000 --- a/outputs/icons/file/page_rotate_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/page_rotate_sharp.svg b/outputs/icons/file/page_rotate_sharp.svg deleted file mode 100644 index 5688e164..00000000 --- a/outputs/icons/file/page_rotate_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/page_width_round.svg b/outputs/icons/file/page_width_round.svg deleted file mode 100644 index 9e74735f..00000000 --- a/outputs/icons/file/page_width_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/page_width_sharp.svg b/outputs/icons/file/page_width_sharp.svg deleted file mode 100644 index 9e74735f..00000000 --- a/outputs/icons/file/page_width_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/pdf_attach_round.svg b/outputs/icons/file/pdf_attach_round.svg deleted file mode 100644 index 4adf514c..00000000 --- a/outputs/icons/file/pdf_attach_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/pdf_attach_sharp.svg b/outputs/icons/file/pdf_attach_sharp.svg deleted file mode 100644 index da33116e..00000000 --- a/outputs/icons/file/pdf_attach_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/png_attach_round.svg b/outputs/icons/file/png_attach_round.svg deleted file mode 100644 index f3a8e51e..00000000 --- a/outputs/icons/file/png_attach_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/png_attach_sharp.svg b/outputs/icons/file/png_attach_sharp.svg deleted file mode 100644 index 95e7ca81..00000000 --- a/outputs/icons/file/png_attach_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/ppt_attach_round.svg b/outputs/icons/file/ppt_attach_round.svg deleted file mode 100644 index 50c5d523..00000000 --- a/outputs/icons/file/ppt_attach_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/ppt_attach_sharp.svg b/outputs/icons/file/ppt_attach_sharp.svg deleted file mode 100644 index 45076958..00000000 --- a/outputs/icons/file/ppt_attach_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/publish_round.svg b/outputs/icons/file/publish_round.svg deleted file mode 100644 index afc4ebc8..00000000 --- a/outputs/icons/file/publish_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/publish_sharp.svg b/outputs/icons/file/publish_sharp.svg deleted file mode 100644 index afc4ebc8..00000000 --- a/outputs/icons/file/publish_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/save_round.svg b/outputs/icons/file/save_round.svg deleted file mode 100644 index 3830ab26..00000000 --- a/outputs/icons/file/save_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/save_sharp.svg b/outputs/icons/file/save_sharp.svg deleted file mode 100644 index 3830ab26..00000000 --- a/outputs/icons/file/save_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/shared_folder_round.svg b/outputs/icons/file/shared_folder_round.svg deleted file mode 100644 index 73fdb497..00000000 --- a/outputs/icons/file/shared_folder_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/shared_folder_sharp.svg b/outputs/icons/file/shared_folder_sharp.svg deleted file mode 100644 index cbec0e7f..00000000 --- a/outputs/icons/file/shared_folder_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/upload_file_round.svg b/outputs/icons/file/upload_file_round.svg deleted file mode 100644 index 7761e345..00000000 --- a/outputs/icons/file/upload_file_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/file/upload_file_sharp.svg b/outputs/icons/file/upload_file_sharp.svg deleted file mode 100644 index a2c12956..00000000 --- a/outputs/icons/file/upload_file_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/activity_round.svg b/outputs/icons/general/activity_round.svg deleted file mode 100644 index ceff7d3e..00000000 --- a/outputs/icons/general/activity_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/activity_sharp.svg b/outputs/icons/general/activity_sharp.svg deleted file mode 100644 index ceff7d3e..00000000 --- a/outputs/icons/general/activity_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/add_task_round.svg b/outputs/icons/general/add_task_round.svg deleted file mode 100644 index 6bbf9fe2..00000000 --- a/outputs/icons/general/add_task_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/add_task_sharp.svg b/outputs/icons/general/add_task_sharp.svg deleted file mode 100644 index 6bbf9fe2..00000000 --- a/outputs/icons/general/add_task_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/app_edit_round.svg b/outputs/icons/general/app_edit_round.svg deleted file mode 100644 index 6f68d3eb..00000000 --- a/outputs/icons/general/app_edit_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/app_edit_sharp.svg b/outputs/icons/general/app_edit_sharp.svg deleted file mode 100644 index 6f68d3eb..00000000 --- a/outputs/icons/general/app_edit_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/audit_activity_round.svg b/outputs/icons/general/audit_activity_round.svg deleted file mode 100644 index a7f2e0ff..00000000 --- a/outputs/icons/general/audit_activity_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/audit_activity_sharp.svg b/outputs/icons/general/audit_activity_sharp.svg deleted file mode 100644 index a7f2e0ff..00000000 --- a/outputs/icons/general/audit_activity_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/building_round.svg b/outputs/icons/general/building_round.svg deleted file mode 100644 index a8dc9e22..00000000 --- a/outputs/icons/general/building_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/building_sharp.svg b/outputs/icons/general/building_sharp.svg deleted file mode 100644 index a8dc9e22..00000000 --- a/outputs/icons/general/building_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/camera_switch_round.svg b/outputs/icons/general/camera_switch_round.svg deleted file mode 100644 index 23aa3b32..00000000 --- a/outputs/icons/general/camera_switch_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/camera_switch_sharp.svg b/outputs/icons/general/camera_switch_sharp.svg deleted file mode 100644 index 23aa3b32..00000000 --- a/outputs/icons/general/camera_switch_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/clipboard_round.svg b/outputs/icons/general/clipboard_round.svg deleted file mode 100644 index 3b13cdab..00000000 --- a/outputs/icons/general/clipboard_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/clipboard_sharp.svg b/outputs/icons/general/clipboard_sharp.svg deleted file mode 100644 index 3b13cdab..00000000 --- a/outputs/icons/general/clipboard_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/exit_round.svg b/outputs/icons/general/exit_round.svg deleted file mode 100644 index 5ea5e853..00000000 --- a/outputs/icons/general/exit_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/exit_sharp.svg b/outputs/icons/general/exit_sharp.svg deleted file mode 100644 index 5ea5e853..00000000 --- a/outputs/icons/general/exit_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/eye_preview_round.svg b/outputs/icons/general/eye_preview_round.svg deleted file mode 100644 index d659b960..00000000 --- a/outputs/icons/general/eye_preview_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/eye_preview_sharp.svg b/outputs/icons/general/eye_preview_sharp.svg deleted file mode 100644 index d659b960..00000000 --- a/outputs/icons/general/eye_preview_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/face_id_round.svg b/outputs/icons/general/face_id_round.svg deleted file mode 100644 index e49b4b78..00000000 --- a/outputs/icons/general/face_id_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/face_id_sharp.svg b/outputs/icons/general/face_id_sharp.svg deleted file mode 100644 index e49b4b78..00000000 --- a/outputs/icons/general/face_id_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/flip_round.svg b/outputs/icons/general/flip_round.svg deleted file mode 100644 index 358521df..00000000 --- a/outputs/icons/general/flip_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/flip_sharp.svg b/outputs/icons/general/flip_sharp.svg deleted file mode 100644 index 358521df..00000000 --- a/outputs/icons/general/flip_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/glossary_round.svg b/outputs/icons/general/glossary_round.svg deleted file mode 100644 index 1154cd97..00000000 --- a/outputs/icons/general/glossary_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/glossary_sharp.svg b/outputs/icons/general/glossary_sharp.svg deleted file mode 100644 index 1154cd97..00000000 --- a/outputs/icons/general/glossary_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/how_do_i_round.svg b/outputs/icons/general/how_do_i_round.svg deleted file mode 100644 index e9fc07fa..00000000 --- a/outputs/icons/general/how_do_i_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/how_do_i_sharp.svg b/outputs/icons/general/how_do_i_sharp.svg deleted file mode 100644 index e9fc07fa..00000000 --- a/outputs/icons/general/how_do_i_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/link_add_round.svg b/outputs/icons/general/link_add_round.svg deleted file mode 100644 index 283e1d25..00000000 --- a/outputs/icons/general/link_add_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/link_add_sharp.svg b/outputs/icons/general/link_add_sharp.svg deleted file mode 100644 index 283e1d25..00000000 --- a/outputs/icons/general/link_add_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/list_bullet_contained_round.svg b/outputs/icons/general/list_bullet_contained_round.svg deleted file mode 100644 index d957d324..00000000 --- a/outputs/icons/general/list_bullet_contained_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/list_bullet_contained_sharp.svg b/outputs/icons/general/list_bullet_contained_sharp.svg deleted file mode 100644 index d957d324..00000000 --- a/outputs/icons/general/list_bullet_contained_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/list_feedback_round.svg b/outputs/icons/general/list_feedback_round.svg deleted file mode 100644 index 6c273baf..00000000 --- a/outputs/icons/general/list_feedback_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/list_feedback_sharp.svg b/outputs/icons/general/list_feedback_sharp.svg deleted file mode 100644 index 6c273baf..00000000 --- a/outputs/icons/general/list_feedback_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/list_form_round.svg b/outputs/icons/general/list_form_round.svg deleted file mode 100644 index 8d272079..00000000 --- a/outputs/icons/general/list_form_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/list_form_sharp.svg b/outputs/icons/general/list_form_sharp.svg deleted file mode 100644 index 8d272079..00000000 --- a/outputs/icons/general/list_form_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/lock_undo_round.svg b/outputs/icons/general/lock_undo_round.svg deleted file mode 100644 index 64427f4a..00000000 --- a/outputs/icons/general/lock_undo_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/lock_undo_sharp.svg b/outputs/icons/general/lock_undo_sharp.svg deleted file mode 100644 index 64427f4a..00000000 --- a/outputs/icons/general/lock_undo_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/note_round.svg b/outputs/icons/general/note_round.svg deleted file mode 100644 index a45f3cce..00000000 --- a/outputs/icons/general/note_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/note_sharp.svg b/outputs/icons/general/note_sharp.svg deleted file mode 100644 index a45f3cce..00000000 --- a/outputs/icons/general/note_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/queue_round.svg b/outputs/icons/general/queue_round.svg deleted file mode 100644 index 1fcd5bf4..00000000 --- a/outputs/icons/general/queue_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/queue_sharp.svg b/outputs/icons/general/queue_sharp.svg deleted file mode 100644 index 1fcd5bf4..00000000 --- a/outputs/icons/general/queue_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/recall_round.svg b/outputs/icons/general/recall_round.svg deleted file mode 100644 index 256e388a..00000000 --- a/outputs/icons/general/recall_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/recall_sharp.svg b/outputs/icons/general/recall_sharp.svg deleted file mode 100644 index 256e388a..00000000 --- a/outputs/icons/general/recall_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/reorder_round.svg b/outputs/icons/general/reorder_round.svg deleted file mode 100644 index 2770ec7a..00000000 --- a/outputs/icons/general/reorder_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/reorder_sharp.svg b/outputs/icons/general/reorder_sharp.svg deleted file mode 100644 index 2770ec7a..00000000 --- a/outputs/icons/general/reorder_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/repeat_round.svg b/outputs/icons/general/repeat_round.svg deleted file mode 100644 index ba09514c..00000000 --- a/outputs/icons/general/repeat_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/repeat_sharp.svg b/outputs/icons/general/repeat_sharp.svg deleted file mode 100644 index ba09514c..00000000 --- a/outputs/icons/general/repeat_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/review_round.svg b/outputs/icons/general/review_round.svg deleted file mode 100644 index 0cee596c..00000000 --- a/outputs/icons/general/review_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/review_sharp.svg b/outputs/icons/general/review_sharp.svg deleted file mode 100644 index 0cee596c..00000000 --- a/outputs/icons/general/review_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/school_round.svg b/outputs/icons/general/school_round.svg deleted file mode 100644 index d834fd68..00000000 --- a/outputs/icons/general/school_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/school_sharp.svg b/outputs/icons/general/school_sharp.svg deleted file mode 100644 index d834fd68..00000000 --- a/outputs/icons/general/school_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/sort_round.svg b/outputs/icons/general/sort_round.svg deleted file mode 100644 index f87d93a5..00000000 --- a/outputs/icons/general/sort_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/sort_sharp.svg b/outputs/icons/general/sort_sharp.svg deleted file mode 100644 index f87d93a5..00000000 --- a/outputs/icons/general/sort_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_release_round.svg b/outputs/icons/general/store_release_round.svg deleted file mode 100644 index 9f333c65..00000000 --- a/outputs/icons/general/store_release_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_release_sharp.svg b/outputs/icons/general/store_release_sharp.svg deleted file mode 100644 index 9f333c65..00000000 --- a/outputs/icons/general/store_release_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_round.svg b/outputs/icons/general/store_round.svg deleted file mode 100644 index 81c2c8e7..00000000 --- a/outputs/icons/general/store_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_sharp.svg b/outputs/icons/general/store_sharp.svg deleted file mode 100644 index 81c2c8e7..00000000 --- a/outputs/icons/general/store_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_swap_round.svg b/outputs/icons/general/store_swap_round.svg deleted file mode 100644 index 29795b74..00000000 --- a/outputs/icons/general/store_swap_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_swap_sharp.svg b/outputs/icons/general/store_swap_sharp.svg deleted file mode 100644 index 29795b74..00000000 --- a/outputs/icons/general/store_swap_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_transfer_round.svg b/outputs/icons/general/store_transfer_round.svg deleted file mode 100644 index 86cb6d31..00000000 --- a/outputs/icons/general/store_transfer_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/store_transfer_sharp.svg b/outputs/icons/general/store_transfer_sharp.svg deleted file mode 100644 index 86cb6d31..00000000 --- a/outputs/icons/general/store_transfer_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/swap_round.svg b/outputs/icons/general/swap_round.svg deleted file mode 100644 index c71e8c76..00000000 --- a/outputs/icons/general/swap_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/swap_sharp.svg b/outputs/icons/general/swap_sharp.svg deleted file mode 100644 index c71e8c76..00000000 --- a/outputs/icons/general/swap_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/tag_round.svg b/outputs/icons/general/tag_round.svg deleted file mode 100644 index 65c0c1f3..00000000 --- a/outputs/icons/general/tag_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/tag_sharp.svg b/outputs/icons/general/tag_sharp.svg deleted file mode 100644 index 65c0c1f3..00000000 --- a/outputs/icons/general/tag_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/tiers_round.svg b/outputs/icons/general/tiers_round.svg deleted file mode 100644 index 09defc7d..00000000 --- a/outputs/icons/general/tiers_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/tiers_sharp.svg b/outputs/icons/general/tiers_sharp.svg deleted file mode 100644 index 09defc7d..00000000 --- a/outputs/icons/general/tiers_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/transfer_round.svg b/outputs/icons/general/transfer_round.svg deleted file mode 100644 index ead10386..00000000 --- a/outputs/icons/general/transfer_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/transfer_sharp.svg b/outputs/icons/general/transfer_sharp.svg deleted file mode 100644 index ead10386..00000000 --- a/outputs/icons/general/transfer_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/vacation_round.svg b/outputs/icons/general/vacation_round.svg deleted file mode 100644 index 6e3657ce..00000000 --- a/outputs/icons/general/vacation_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/vacation_sharp.svg b/outputs/icons/general/vacation_sharp.svg deleted file mode 100644 index 6e3657ce..00000000 --- a/outputs/icons/general/vacation_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/video_off_round.svg b/outputs/icons/general/video_off_round.svg deleted file mode 100644 index ea1e6532..00000000 --- a/outputs/icons/general/video_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/video_off_sharp.svg b/outputs/icons/general/video_off_sharp.svg deleted file mode 100644 index ea1e6532..00000000 --- a/outputs/icons/general/video_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/video_round.svg b/outputs/icons/general/video_round.svg deleted file mode 100644 index 9b5be3be..00000000 --- a/outputs/icons/general/video_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/video_sharp.svg b/outputs/icons/general/video_sharp.svg deleted file mode 100644 index 9b5be3be..00000000 --- a/outputs/icons/general/video_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/write_round.svg b/outputs/icons/general/write_round.svg deleted file mode 100644 index 10f1b90f..00000000 --- a/outputs/icons/general/write_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/general/write_sharp.svg b/outputs/icons/general/write_sharp.svg deleted file mode 100644 index 10f1b90f..00000000 --- a/outputs/icons/general/write_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/cast_connected_round.svg b/outputs/icons/hardware/cast_connected_round.svg deleted file mode 100644 index 0cd4f627..00000000 --- a/outputs/icons/hardware/cast_connected_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/cast_connected_sharp.svg b/outputs/icons/hardware/cast_connected_sharp.svg deleted file mode 100644 index 4682cf47..00000000 --- a/outputs/icons/hardware/cast_connected_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/cast_round.svg b/outputs/icons/hardware/cast_round.svg deleted file mode 100644 index 0c4ce488..00000000 --- a/outputs/icons/hardware/cast_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/cast_sharp.svg b/outputs/icons/hardware/cast_sharp.svg deleted file mode 100644 index edbebe5b..00000000 --- a/outputs/icons/hardware/cast_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/desktop_round.svg b/outputs/icons/hardware/desktop_round.svg deleted file mode 100644 index 54c44659..00000000 --- a/outputs/icons/hardware/desktop_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/desktop_sharp.svg b/outputs/icons/hardware/desktop_sharp.svg deleted file mode 100644 index 6bcd83bf..00000000 --- a/outputs/icons/hardware/desktop_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/device_settings_round.svg b/outputs/icons/hardware/device_settings_round.svg deleted file mode 100644 index 6cc427a9..00000000 --- a/outputs/icons/hardware/device_settings_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/device_settings_sharp.svg b/outputs/icons/hardware/device_settings_sharp.svg deleted file mode 100644 index ef3223e3..00000000 --- a/outputs/icons/hardware/device_settings_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/devices_ecosystem_round.svg b/outputs/icons/hardware/devices_ecosystem_round.svg deleted file mode 100644 index a9267c71..00000000 --- a/outputs/icons/hardware/devices_ecosystem_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/devices_ecosystem_sharp.svg b/outputs/icons/hardware/devices_ecosystem_sharp.svg deleted file mode 100644 index 42a928b9..00000000 --- a/outputs/icons/hardware/devices_ecosystem_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/headphones_round.svg b/outputs/icons/hardware/headphones_round.svg deleted file mode 100644 index b9d9213b..00000000 --- a/outputs/icons/hardware/headphones_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/headphones_sharp.svg b/outputs/icons/hardware/headphones_sharp.svg deleted file mode 100644 index d4d69636..00000000 --- a/outputs/icons/hardware/headphones_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/keyboard_round.svg b/outputs/icons/hardware/keyboard_round.svg deleted file mode 100644 index ba37c098..00000000 --- a/outputs/icons/hardware/keyboard_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/keyboard_sharp.svg b/outputs/icons/hardware/keyboard_sharp.svg deleted file mode 100644 index 65241ffa..00000000 --- a/outputs/icons/hardware/keyboard_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/laptop_round.svg b/outputs/icons/hardware/laptop_round.svg deleted file mode 100644 index 4384074d..00000000 --- a/outputs/icons/hardware/laptop_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/laptop_sharp.svg b/outputs/icons/hardware/laptop_sharp.svg deleted file mode 100644 index 1444b5c7..00000000 --- a/outputs/icons/hardware/laptop_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/memory_round.svg b/outputs/icons/hardware/memory_round.svg deleted file mode 100644 index 4c662104..00000000 --- a/outputs/icons/hardware/memory_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/memory_sharp.svg b/outputs/icons/hardware/memory_sharp.svg deleted file mode 100644 index 2eaf186e..00000000 --- a/outputs/icons/hardware/memory_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/monitor_round.svg b/outputs/icons/hardware/monitor_round.svg deleted file mode 100644 index c7668037..00000000 --- a/outputs/icons/hardware/monitor_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/monitor_sharp.svg b/outputs/icons/hardware/monitor_sharp.svg deleted file mode 100644 index 832cc0a7..00000000 --- a/outputs/icons/hardware/monitor_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/phone_android_round.svg b/outputs/icons/hardware/phone_android_round.svg deleted file mode 100644 index 9f2c59bb..00000000 --- a/outputs/icons/hardware/phone_android_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/phone_android_sharp.svg b/outputs/icons/hardware/phone_android_sharp.svg deleted file mode 100644 index 0c9441d1..00000000 --- a/outputs/icons/hardware/phone_android_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/phone_iphone_round.svg b/outputs/icons/hardware/phone_iphone_round.svg deleted file mode 100644 index 6673744e..00000000 --- a/outputs/icons/hardware/phone_iphone_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/phone_iphone_sharp.svg b/outputs/icons/hardware/phone_iphone_sharp.svg deleted file mode 100644 index 4eacf25e..00000000 --- a/outputs/icons/hardware/phone_iphone_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/phonelink_round.svg b/outputs/icons/hardware/phonelink_round.svg deleted file mode 100644 index 7ac2e40e..00000000 --- a/outputs/icons/hardware/phonelink_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/phonelink_sharp.svg b/outputs/icons/hardware/phonelink_sharp.svg deleted file mode 100644 index b04de152..00000000 --- a/outputs/icons/hardware/phonelink_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/printer_round.svg b/outputs/icons/hardware/printer_round.svg deleted file mode 100644 index 7ea1a1f7..00000000 --- a/outputs/icons/hardware/printer_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/printer_sharp.svg b/outputs/icons/hardware/printer_sharp.svg deleted file mode 100644 index 19689def..00000000 --- a/outputs/icons/hardware/printer_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/scanner_round.svg b/outputs/icons/hardware/scanner_round.svg deleted file mode 100644 index d2275cdc..00000000 --- a/outputs/icons/hardware/scanner_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/scanner_sharp.svg b/outputs/icons/hardware/scanner_sharp.svg deleted file mode 100644 index c2f3dc2b..00000000 --- a/outputs/icons/hardware/scanner_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/security_round.svg b/outputs/icons/hardware/security_round.svg deleted file mode 100644 index 4d54b4a5..00000000 --- a/outputs/icons/hardware/security_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/security_sharp.svg b/outputs/icons/hardware/security_sharp.svg deleted file mode 100644 index eb4272cf..00000000 --- a/outputs/icons/hardware/security_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/smart_phone_round.svg b/outputs/icons/hardware/smart_phone_round.svg deleted file mode 100644 index 7af612f2..00000000 --- a/outputs/icons/hardware/smart_phone_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/smart_phone_sharp.svg b/outputs/icons/hardware/smart_phone_sharp.svg deleted file mode 100644 index 972f35e4..00000000 --- a/outputs/icons/hardware/smart_phone_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/speaker_round.svg b/outputs/icons/hardware/speaker_round.svg deleted file mode 100644 index 59dcbc1c..00000000 --- a/outputs/icons/hardware/speaker_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/speaker_sharp.svg b/outputs/icons/hardware/speaker_sharp.svg deleted file mode 100644 index 3a94c118..00000000 --- a/outputs/icons/hardware/speaker_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/tablet_mac_round.svg b/outputs/icons/hardware/tablet_mac_round.svg deleted file mode 100644 index b32627a6..00000000 --- a/outputs/icons/hardware/tablet_mac_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/tablet_mac_sharp.svg b/outputs/icons/hardware/tablet_mac_sharp.svg deleted file mode 100644 index 0eedeb8a..00000000 --- a/outputs/icons/hardware/tablet_mac_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/tablet_round.svg b/outputs/icons/hardware/tablet_round.svg deleted file mode 100644 index f3664819..00000000 --- a/outputs/icons/hardware/tablet_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/tablet_sharp.svg b/outputs/icons/hardware/tablet_sharp.svg deleted file mode 100644 index 9d24f7c9..00000000 --- a/outputs/icons/hardware/tablet_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/tv_round.svg b/outputs/icons/hardware/tv_round.svg deleted file mode 100644 index 527370de..00000000 --- a/outputs/icons/hardware/tv_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/tv_sharp.svg b/outputs/icons/hardware/tv_sharp.svg deleted file mode 100644 index 0f57319f..00000000 --- a/outputs/icons/hardware/tv_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/video_play_round.svg b/outputs/icons/hardware/video_play_round.svg deleted file mode 100644 index d216a3ea..00000000 --- a/outputs/icons/hardware/video_play_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/video_play_sharp.svg b/outputs/icons/hardware/video_play_sharp.svg deleted file mode 100644 index 34b4870b..00000000 --- a/outputs/icons/hardware/video_play_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/watch_round.svg b/outputs/icons/hardware/watch_round.svg deleted file mode 100644 index 0fb63853..00000000 --- a/outputs/icons/hardware/watch_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/hardware/watch_sharp.svg b/outputs/icons/hardware/watch_sharp.svg deleted file mode 100644 index b7eebc0d..00000000 --- a/outputs/icons/hardware/watch_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/adjustments_round.svg b/outputs/icons/image/adjustments_round.svg deleted file mode 100644 index 4c1b2c4a..00000000 --- a/outputs/icons/image/adjustments_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/adjustments_sharp.svg b/outputs/icons/image/adjustments_sharp.svg deleted file mode 100644 index 9a7d0ddf..00000000 --- a/outputs/icons/image/adjustments_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/auto_round.svg b/outputs/icons/image/auto_round.svg deleted file mode 100644 index 57eed11b..00000000 --- a/outputs/icons/image/auto_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/auto_sharp.svg b/outputs/icons/image/auto_sharp.svg deleted file mode 100644 index b7158330..00000000 --- a/outputs/icons/image/auto_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/awb_round.svg b/outputs/icons/image/awb_round.svg deleted file mode 100644 index f20936b0..00000000 --- a/outputs/icons/image/awb_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/awb_sharp.svg b/outputs/icons/image/awb_sharp.svg deleted file mode 100644 index 0dd96f1f..00000000 --- a/outputs/icons/image/awb_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/camera_round.svg b/outputs/icons/image/camera_round.svg deleted file mode 100644 index 718b35dc..00000000 --- a/outputs/icons/image/camera_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/camera_sharp.svg b/outputs/icons/image/camera_sharp.svg deleted file mode 100644 index c3f2e1c7..00000000 --- a/outputs/icons/image/camera_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/camera_shutter_round.svg b/outputs/icons/image/camera_shutter_round.svg deleted file mode 100644 index 05306198..00000000 --- a/outputs/icons/image/camera_shutter_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/camera_shutter_sharp.svg b/outputs/icons/image/camera_shutter_sharp.svg deleted file mode 100644 index ed5881f8..00000000 --- a/outputs/icons/image/camera_shutter_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/camera_switch_image_round.svg b/outputs/icons/image/camera_switch_image_round.svg deleted file mode 100644 index cdd1e63b..00000000 --- a/outputs/icons/image/camera_switch_image_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/camera_switch_image_sharp.svg b/outputs/icons/image/camera_switch_image_sharp.svg deleted file mode 100644 index 50e4fca7..00000000 --- a/outputs/icons/image/camera_switch_image_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/contrast_image_round.svg b/outputs/icons/image/contrast_image_round.svg deleted file mode 100644 index e8c1cd92..00000000 --- a/outputs/icons/image/contrast_image_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/contrast_image_sharp.svg b/outputs/icons/image/contrast_image_sharp.svg deleted file mode 100644 index cc35ed64..00000000 --- a/outputs/icons/image/contrast_image_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/crop_round.svg b/outputs/icons/image/crop_round.svg deleted file mode 100644 index 7f3e71e7..00000000 --- a/outputs/icons/image/crop_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/crop_sharp.svg b/outputs/icons/image/crop_sharp.svg deleted file mode 100644 index b3583dcd..00000000 --- a/outputs/icons/image/crop_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/eye_dropper_round.svg b/outputs/icons/image/eye_dropper_round.svg deleted file mode 100644 index 3817b467..00000000 --- a/outputs/icons/image/eye_dropper_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/eye_dropper_sharp.svg b/outputs/icons/image/eye_dropper_sharp.svg deleted file mode 100644 index b11c785c..00000000 --- a/outputs/icons/image/eye_dropper_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/grid_off_round.svg b/outputs/icons/image/grid_off_round.svg deleted file mode 100644 index d5c17526..00000000 --- a/outputs/icons/image/grid_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/grid_off_sharp.svg b/outputs/icons/image/grid_off_sharp.svg deleted file mode 100644 index b7e20d0c..00000000 --- a/outputs/icons/image/grid_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/grid_on_round.svg b/outputs/icons/image/grid_on_round.svg deleted file mode 100644 index 19ed2000..00000000 --- a/outputs/icons/image/grid_on_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/grid_on_sharp.svg b/outputs/icons/image/grid_on_sharp.svg deleted file mode 100644 index 28fb0891..00000000 --- a/outputs/icons/image/grid_on_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/hdr_round.svg b/outputs/icons/image/hdr_round.svg deleted file mode 100644 index d77070dd..00000000 --- a/outputs/icons/image/hdr_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/hdr_sharp.svg b/outputs/icons/image/hdr_sharp.svg deleted file mode 100644 index 53c0ddfd..00000000 --- a/outputs/icons/image/hdr_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/image_library_round.svg b/outputs/icons/image/image_library_round.svg deleted file mode 100644 index 7afdb4c8..00000000 --- a/outputs/icons/image/image_library_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/image_library_sharp.svg b/outputs/icons/image/image_library_sharp.svg deleted file mode 100644 index 8e7af716..00000000 --- a/outputs/icons/image/image_library_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/image_round.svg b/outputs/icons/image/image_round.svg deleted file mode 100644 index c84c2b90..00000000 --- a/outputs/icons/image/image_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/image_sharp.svg b/outputs/icons/image/image_sharp.svg deleted file mode 100644 index d2fd998c..00000000 --- a/outputs/icons/image/image_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/iso_round.svg b/outputs/icons/image/iso_round.svg deleted file mode 100644 index 46149ac9..00000000 --- a/outputs/icons/image/iso_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/iso_sharp.svg b/outputs/icons/image/iso_sharp.svg deleted file mode 100644 index 3036fdd5..00000000 --- a/outputs/icons/image/iso_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/portrait_round.svg b/outputs/icons/image/portrait_round.svg deleted file mode 100644 index f4901b97..00000000 --- a/outputs/icons/image/portrait_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/portrait_sharp.svg b/outputs/icons/image/portrait_sharp.svg deleted file mode 100644 index 529e7f0f..00000000 --- a/outputs/icons/image/portrait_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/pro_round.svg b/outputs/icons/image/pro_round.svg deleted file mode 100644 index 397a12b3..00000000 --- a/outputs/icons/image/pro_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/pro_sharp.svg b/outputs/icons/image/pro_sharp.svg deleted file mode 100644 index cac6f1a7..00000000 --- a/outputs/icons/image/pro_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/rotate_left_round.svg b/outputs/icons/image/rotate_left_round.svg deleted file mode 100644 index bfef6e82..00000000 --- a/outputs/icons/image/rotate_left_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/rotate_left_sharp.svg b/outputs/icons/image/rotate_left_sharp.svg deleted file mode 100644 index fd2bf77c..00000000 --- a/outputs/icons/image/rotate_left_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/rotate_right_round.svg b/outputs/icons/image/rotate_right_round.svg deleted file mode 100644 index 8fdcb4ba..00000000 --- a/outputs/icons/image/rotate_right_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/rotate_right_sharp.svg b/outputs/icons/image/rotate_right_sharp.svg deleted file mode 100644 index a09d2c1b..00000000 --- a/outputs/icons/image/rotate_right_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/slide_show_round.svg b/outputs/icons/image/slide_show_round.svg deleted file mode 100644 index 2ba5e0eb..00000000 --- a/outputs/icons/image/slide_show_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/slide_show_sharp.svg b/outputs/icons/image/slide_show_sharp.svg deleted file mode 100644 index 302f1504..00000000 --- a/outputs/icons/image/slide_show_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/straighten_round.svg b/outputs/icons/image/straighten_round.svg deleted file mode 100644 index 388cf572..00000000 --- a/outputs/icons/image/straighten_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/straighten_sharp.svg b/outputs/icons/image/straighten_sharp.svg deleted file mode 100644 index 01d8f332..00000000 --- a/outputs/icons/image/straighten_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/timer_round.svg b/outputs/icons/image/timer_round.svg deleted file mode 100644 index 6bd728bc..00000000 --- a/outputs/icons/image/timer_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/timer_sharp.svg b/outputs/icons/image/timer_sharp.svg deleted file mode 100644 index 02817dc8..00000000 --- a/outputs/icons/image/timer_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/wb_image_round.svg b/outputs/icons/image/wb_image_round.svg deleted file mode 100644 index ae11b996..00000000 --- a/outputs/icons/image/wb_image_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/wb_image_sharp.svg b/outputs/icons/image/wb_image_sharp.svg deleted file mode 100644 index 2efa492c..00000000 --- a/outputs/icons/image/wb_image_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/wb_round.svg b/outputs/icons/image/wb_round.svg deleted file mode 100644 index 3a0d18aa..00000000 --- a/outputs/icons/image/wb_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/image/wb_sharp.svg b/outputs/icons/image/wb_sharp.svg deleted file mode 100644 index 3c99e5e9..00000000 --- a/outputs/icons/image/wb_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/bus_round.svg b/outputs/icons/maps/bus_round.svg deleted file mode 100644 index 4c3e63e9..00000000 --- a/outputs/icons/maps/bus_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/bus_sharp.svg b/outputs/icons/maps/bus_sharp.svg deleted file mode 100644 index ab9bef69..00000000 --- a/outputs/icons/maps/bus_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/cafe_round.svg b/outputs/icons/maps/cafe_round.svg deleted file mode 100644 index e22f808f..00000000 --- a/outputs/icons/maps/cafe_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/cafe_sharp.svg b/outputs/icons/maps/cafe_sharp.svg deleted file mode 100644 index e75a981b..00000000 --- a/outputs/icons/maps/cafe_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/car_round.svg b/outputs/icons/maps/car_round.svg deleted file mode 100644 index a87572b5..00000000 --- a/outputs/icons/maps/car_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/car_sharp.svg b/outputs/icons/maps/car_sharp.svg deleted file mode 100644 index 33535a27..00000000 --- a/outputs/icons/maps/car_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/flight_round.svg b/outputs/icons/maps/flight_round.svg deleted file mode 100644 index 721ffa48..00000000 --- a/outputs/icons/maps/flight_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/flight_sharp.svg b/outputs/icons/maps/flight_sharp.svg deleted file mode 100644 index dc4229a1..00000000 --- a/outputs/icons/maps/flight_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/layers_round.svg b/outputs/icons/maps/layers_round.svg deleted file mode 100644 index 26e568db..00000000 --- a/outputs/icons/maps/layers_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/layers_sharp.svg b/outputs/icons/maps/layers_sharp.svg deleted file mode 100644 index 23c6ed36..00000000 --- a/outputs/icons/maps/layers_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/light_rail_train_round.svg b/outputs/icons/maps/light_rail_train_round.svg deleted file mode 100644 index d7baf1a3..00000000 --- a/outputs/icons/maps/light_rail_train_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/light_rail_train_sharp.svg b/outputs/icons/maps/light_rail_train_sharp.svg deleted file mode 100644 index fccce69e..00000000 --- a/outputs/icons/maps/light_rail_train_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/local_shipping_round.svg b/outputs/icons/maps/local_shipping_round.svg deleted file mode 100644 index d45b394b..00000000 --- a/outputs/icons/maps/local_shipping_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/local_shipping_sharp.svg b/outputs/icons/maps/local_shipping_sharp.svg deleted file mode 100644 index c521bc1a..00000000 --- a/outputs/icons/maps/local_shipping_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/map_round.svg b/outputs/icons/maps/map_round.svg deleted file mode 100644 index 08808be5..00000000 --- a/outputs/icons/maps/map_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/map_sharp.svg b/outputs/icons/maps/map_sharp.svg deleted file mode 100644 index 9cb3c0bf..00000000 --- a/outputs/icons/maps/map_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/my_location_round.svg b/outputs/icons/maps/my_location_round.svg deleted file mode 100644 index 7d459f56..00000000 --- a/outputs/icons/maps/my_location_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/my_location_sharp.svg b/outputs/icons/maps/my_location_sharp.svg deleted file mode 100644 index 23372379..00000000 --- a/outputs/icons/maps/my_location_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/navigation_round.svg b/outputs/icons/maps/navigation_round.svg deleted file mode 100644 index dd793f0f..00000000 --- a/outputs/icons/maps/navigation_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/navigation_sharp.svg b/outputs/icons/maps/navigation_sharp.svg deleted file mode 100644 index 26b16abe..00000000 --- a/outputs/icons/maps/navigation_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/near_me_round.svg b/outputs/icons/maps/near_me_round.svg deleted file mode 100644 index 97e71378..00000000 --- a/outputs/icons/maps/near_me_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/near_me_sharp.svg b/outputs/icons/maps/near_me_sharp.svg deleted file mode 100644 index 3162a6c9..00000000 --- a/outputs/icons/maps/near_me_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/place_round.svg b/outputs/icons/maps/place_round.svg deleted file mode 100644 index a56c8583..00000000 --- a/outputs/icons/maps/place_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/place_sharp.svg b/outputs/icons/maps/place_sharp.svg deleted file mode 100644 index fd5a96e0..00000000 --- a/outputs/icons/maps/place_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/ship_round.svg b/outputs/icons/maps/ship_round.svg deleted file mode 100644 index c14f550d..00000000 --- a/outputs/icons/maps/ship_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/ship_sharp.svg b/outputs/icons/maps/ship_sharp.svg deleted file mode 100644 index d88c9e89..00000000 --- a/outputs/icons/maps/ship_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/taxi_round.svg b/outputs/icons/maps/taxi_round.svg deleted file mode 100644 index 37d3a81f..00000000 --- a/outputs/icons/maps/taxi_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/taxi_sharp.svg b/outputs/icons/maps/taxi_sharp.svg deleted file mode 100644 index 30f06670..00000000 --- a/outputs/icons/maps/taxi_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/train_round.svg b/outputs/icons/maps/train_round.svg deleted file mode 100644 index d2ba3363..00000000 --- a/outputs/icons/maps/train_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/train_sharp.svg b/outputs/icons/maps/train_sharp.svg deleted file mode 100644 index 982cd4eb..00000000 --- a/outputs/icons/maps/train_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/world_round.svg b/outputs/icons/maps/world_round.svg deleted file mode 100644 index c510fcfa..00000000 --- a/outputs/icons/maps/world_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/world_sharp.svg b/outputs/icons/maps/world_sharp.svg deleted file mode 100644 index d1d84273..00000000 --- a/outputs/icons/maps/world_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/zoom_in_map_round.svg b/outputs/icons/maps/zoom_in_map_round.svg deleted file mode 100644 index cdedefe2..00000000 --- a/outputs/icons/maps/zoom_in_map_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/zoom_in_map_sharp.svg b/outputs/icons/maps/zoom_in_map_sharp.svg deleted file mode 100644 index 3c9de27d..00000000 --- a/outputs/icons/maps/zoom_in_map_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/zoom_out_map_round.svg b/outputs/icons/maps/zoom_out_map_round.svg deleted file mode 100644 index 73001f8b..00000000 --- a/outputs/icons/maps/zoom_out_map_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/maps/zoom_out_map_sharp.svg b/outputs/icons/maps/zoom_out_map_sharp.svg deleted file mode 100644 index 0f0b0e82..00000000 --- a/outputs/icons/maps/zoom_out_map_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/apps_round.svg b/outputs/icons/navigation/apps_round.svg deleted file mode 100644 index 134f73b1..00000000 --- a/outputs/icons/navigation/apps_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/apps_sharp.svg b/outputs/icons/navigation/apps_sharp.svg deleted file mode 100644 index 82412546..00000000 --- a/outputs/icons/navigation/apps_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_back_round.svg b/outputs/icons/navigation/arrow_back_round.svg deleted file mode 100644 index 28f32b28..00000000 --- a/outputs/icons/navigation/arrow_back_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_back_sharp.svg b/outputs/icons/navigation/arrow_back_sharp.svg deleted file mode 100644 index 6d283bed..00000000 --- a/outputs/icons/navigation/arrow_back_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_down_round.svg b/outputs/icons/navigation/arrow_down_round.svg deleted file mode 100644 index cdffa32c..00000000 --- a/outputs/icons/navigation/arrow_down_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_down_sharp.svg b/outputs/icons/navigation/arrow_down_sharp.svg deleted file mode 100644 index 039d4994..00000000 --- a/outputs/icons/navigation/arrow_down_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_forward_round.svg b/outputs/icons/navigation/arrow_forward_round.svg deleted file mode 100644 index d4594ade..00000000 --- a/outputs/icons/navigation/arrow_forward_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_forward_sharp.svg b/outputs/icons/navigation/arrow_forward_sharp.svg deleted file mode 100644 index 41b6681b..00000000 --- a/outputs/icons/navigation/arrow_forward_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_up_round.svg b/outputs/icons/navigation/arrow_up_round.svg deleted file mode 100644 index 0c0f6da2..00000000 --- a/outputs/icons/navigation/arrow_up_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/arrow_up_sharp.svg b/outputs/icons/navigation/arrow_up_sharp.svg deleted file mode 100644 index eaf793c8..00000000 --- a/outputs/icons/navigation/arrow_up_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/cancel_outline_round.svg b/outputs/icons/navigation/cancel_outline_round.svg deleted file mode 100644 index 8fe1d760..00000000 --- a/outputs/icons/navigation/cancel_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/cancel_outline_sharp.svg b/outputs/icons/navigation/cancel_outline_sharp.svg deleted file mode 100644 index 8ef66f1d..00000000 --- a/outputs/icons/navigation/cancel_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/cancel_round.svg b/outputs/icons/navigation/cancel_round.svg deleted file mode 100644 index e5cb58ff..00000000 --- a/outputs/icons/navigation/cancel_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/cancel_sharp.svg b/outputs/icons/navigation/cancel_sharp.svg deleted file mode 100644 index 496b535e..00000000 --- a/outputs/icons/navigation/cancel_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_down_round.svg b/outputs/icons/navigation/caret_down_round.svg deleted file mode 100644 index 8a4bff09..00000000 --- a/outputs/icons/navigation/caret_down_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_down_sharp.svg b/outputs/icons/navigation/caret_down_sharp.svg deleted file mode 100644 index 4637820c..00000000 --- a/outputs/icons/navigation/caret_down_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_left_round.svg b/outputs/icons/navigation/caret_left_round.svg deleted file mode 100644 index a12745ea..00000000 --- a/outputs/icons/navigation/caret_left_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_left_sharp.svg b/outputs/icons/navigation/caret_left_sharp.svg deleted file mode 100644 index 84ade243..00000000 --- a/outputs/icons/navigation/caret_left_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_right_round.svg b/outputs/icons/navigation/caret_right_round.svg deleted file mode 100644 index 887b0660..00000000 --- a/outputs/icons/navigation/caret_right_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_right_sharp.svg b/outputs/icons/navigation/caret_right_sharp.svg deleted file mode 100644 index bc9718d2..00000000 --- a/outputs/icons/navigation/caret_right_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_sort_round.svg b/outputs/icons/navigation/caret_sort_round.svg deleted file mode 100644 index e7892695..00000000 --- a/outputs/icons/navigation/caret_sort_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_sort_sharp.svg b/outputs/icons/navigation/caret_sort_sharp.svg deleted file mode 100644 index e16522cb..00000000 --- a/outputs/icons/navigation/caret_sort_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_up_round.svg b/outputs/icons/navigation/caret_up_round.svg deleted file mode 100644 index 5e523884..00000000 --- a/outputs/icons/navigation/caret_up_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/caret_up_sharp.svg b/outputs/icons/navigation/caret_up_sharp.svg deleted file mode 100644 index d679355c..00000000 --- a/outputs/icons/navigation/caret_up_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/chevron_left_round.svg b/outputs/icons/navigation/chevron_left_round.svg deleted file mode 100644 index b2b68b26..00000000 --- a/outputs/icons/navigation/chevron_left_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/chevron_left_sharp.svg b/outputs/icons/navigation/chevron_left_sharp.svg deleted file mode 100644 index 32ce19e1..00000000 --- a/outputs/icons/navigation/chevron_left_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/chevron_right_round.svg b/outputs/icons/navigation/chevron_right_round.svg deleted file mode 100644 index 5971d62a..00000000 --- a/outputs/icons/navigation/chevron_right_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/chevron_right_sharp.svg b/outputs/icons/navigation/chevron_right_sharp.svg deleted file mode 100644 index a8ee1bb7..00000000 --- a/outputs/icons/navigation/chevron_right_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/close_round.svg b/outputs/icons/navigation/close_round.svg deleted file mode 100644 index 6b171f9b..00000000 --- a/outputs/icons/navigation/close_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/close_sharp.svg b/outputs/icons/navigation/close_sharp.svg deleted file mode 100644 index a6f3949b..00000000 --- a/outputs/icons/navigation/close_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/columns_round.svg b/outputs/icons/navigation/columns_round.svg deleted file mode 100644 index 5ab021b3..00000000 --- a/outputs/icons/navigation/columns_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/columns_sharp.svg b/outputs/icons/navigation/columns_sharp.svg deleted file mode 100644 index 92693d10..00000000 --- a/outputs/icons/navigation/columns_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/dashboard_round.svg b/outputs/icons/navigation/dashboard_round.svg deleted file mode 100644 index e6a3cb7b..00000000 --- a/outputs/icons/navigation/dashboard_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/dashboard_sharp.svg b/outputs/icons/navigation/dashboard_sharp.svg deleted file mode 100644 index 97469eb9..00000000 --- a/outputs/icons/navigation/dashboard_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/drop_down_circle_round.svg b/outputs/icons/navigation/drop_down_circle_round.svg deleted file mode 100644 index 3e7b31fd..00000000 --- a/outputs/icons/navigation/drop_down_circle_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/drop_down_circle_sharp.svg b/outputs/icons/navigation/drop_down_circle_sharp.svg deleted file mode 100644 index 1a372271..00000000 --- a/outputs/icons/navigation/drop_down_circle_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/expand_less_round.svg b/outputs/icons/navigation/expand_less_round.svg deleted file mode 100644 index 623fc61d..00000000 --- a/outputs/icons/navigation/expand_less_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/expand_less_sharp.svg b/outputs/icons/navigation/expand_less_sharp.svg deleted file mode 100644 index 3d1a9026..00000000 --- a/outputs/icons/navigation/expand_less_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/expand_more_round.svg b/outputs/icons/navigation/expand_more_round.svg deleted file mode 100644 index f774ebb7..00000000 --- a/outputs/icons/navigation/expand_more_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/expand_more_sharp.svg b/outputs/icons/navigation/expand_more_sharp.svg deleted file mode 100644 index 6c90b569..00000000 --- a/outputs/icons/navigation/expand_more_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/first_page_round.svg b/outputs/icons/navigation/first_page_round.svg deleted file mode 100644 index e9023561..00000000 --- a/outputs/icons/navigation/first_page_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/first_page_sharp.svg b/outputs/icons/navigation/first_page_sharp.svg deleted file mode 100644 index 37c384b4..00000000 --- a/outputs/icons/navigation/first_page_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/full_screen_exit_round.svg b/outputs/icons/navigation/full_screen_exit_round.svg deleted file mode 100644 index 508049c3..00000000 --- a/outputs/icons/navigation/full_screen_exit_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/full_screen_exit_sharp.svg b/outputs/icons/navigation/full_screen_exit_sharp.svg deleted file mode 100644 index b14546cf..00000000 --- a/outputs/icons/navigation/full_screen_exit_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/full_screen_round.svg b/outputs/icons/navigation/full_screen_round.svg deleted file mode 100644 index 5b128c03..00000000 --- a/outputs/icons/navigation/full_screen_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/full_screen_sharp.svg b/outputs/icons/navigation/full_screen_sharp.svg deleted file mode 100644 index c715ce5f..00000000 --- a/outputs/icons/navigation/full_screen_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/hamburger_menu_navigation_rail_round.svg b/outputs/icons/navigation/hamburger_menu_navigation_rail_round.svg deleted file mode 100644 index 033850d9..00000000 --- a/outputs/icons/navigation/hamburger_menu_navigation_rail_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/hamburger_menu_navigation_rail_sharp.svg b/outputs/icons/navigation/hamburger_menu_navigation_rail_sharp.svg deleted file mode 100644 index 6d33eebe..00000000 --- a/outputs/icons/navigation/hamburger_menu_navigation_rail_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/hamburger_menu_round.svg b/outputs/icons/navigation/hamburger_menu_round.svg deleted file mode 100644 index f20d8b5d..00000000 --- a/outputs/icons/navigation/hamburger_menu_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/hamburger_menu_sharp.svg b/outputs/icons/navigation/hamburger_menu_sharp.svg deleted file mode 100644 index c44ee260..00000000 --- a/outputs/icons/navigation/hamburger_menu_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/hamburger_menu_thick_round.svg b/outputs/icons/navigation/hamburger_menu_thick_round.svg deleted file mode 100644 index 69d13fbd..00000000 --- a/outputs/icons/navigation/hamburger_menu_thick_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/hamburger_menu_thick_sharp.svg b/outputs/icons/navigation/hamburger_menu_thick_sharp.svg deleted file mode 100644 index 976d3d07..00000000 --- a/outputs/icons/navigation/hamburger_menu_thick_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/help_outline_round.svg b/outputs/icons/navigation/help_outline_round.svg deleted file mode 100644 index fec92df1..00000000 --- a/outputs/icons/navigation/help_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/help_outline_sharp.svg b/outputs/icons/navigation/help_outline_sharp.svg deleted file mode 100644 index 94459d51..00000000 --- a/outputs/icons/navigation/help_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/help_round.svg b/outputs/icons/navigation/help_round.svg deleted file mode 100644 index 49541bb4..00000000 --- a/outputs/icons/navigation/help_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/help_sharp.svg b/outputs/icons/navigation/help_sharp.svg deleted file mode 100644 index 9ea5636c..00000000 --- a/outputs/icons/navigation/help_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/last_page_round.svg b/outputs/icons/navigation/last_page_round.svg deleted file mode 100644 index 38f4ed92..00000000 --- a/outputs/icons/navigation/last_page_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/last_page_sharp.svg b/outputs/icons/navigation/last_page_sharp.svg deleted file mode 100644 index 751cabe4..00000000 --- a/outputs/icons/navigation/last_page_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/list_alt_round.svg b/outputs/icons/navigation/list_alt_round.svg deleted file mode 100644 index 2f96c653..00000000 --- a/outputs/icons/navigation/list_alt_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/list_alt_sharp.svg b/outputs/icons/navigation/list_alt_sharp.svg deleted file mode 100644 index 6abb6b05..00000000 --- a/outputs/icons/navigation/list_alt_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/list_round.svg b/outputs/icons/navigation/list_round.svg deleted file mode 100644 index d065ffa1..00000000 --- a/outputs/icons/navigation/list_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/list_sharp.svg b/outputs/icons/navigation/list_sharp.svg deleted file mode 100644 index 14c35371..00000000 --- a/outputs/icons/navigation/list_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/more_horizontal_round.svg b/outputs/icons/navigation/more_horizontal_round.svg deleted file mode 100644 index d9dcd9be..00000000 --- a/outputs/icons/navigation/more_horizontal_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/more_horizontal_sharp.svg b/outputs/icons/navigation/more_horizontal_sharp.svg deleted file mode 100644 index ef6a511a..00000000 --- a/outputs/icons/navigation/more_horizontal_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/more_vertical_round.svg b/outputs/icons/navigation/more_vertical_round.svg deleted file mode 100644 index 9ab3c334..00000000 --- a/outputs/icons/navigation/more_vertical_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/more_vertical_sharp.svg b/outputs/icons/navigation/more_vertical_sharp.svg deleted file mode 100644 index 6bd5c5b1..00000000 --- a/outputs/icons/navigation/more_vertical_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/refresh_round.svg b/outputs/icons/navigation/refresh_round.svg deleted file mode 100644 index 8ecd219a..00000000 --- a/outputs/icons/navigation/refresh_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/refresh_sharp.svg b/outputs/icons/navigation/refresh_sharp.svg deleted file mode 100644 index 4132baf9..00000000 --- a/outputs/icons/navigation/refresh_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/unfold_less_round.svg b/outputs/icons/navigation/unfold_less_round.svg deleted file mode 100644 index bc0f896c..00000000 --- a/outputs/icons/navigation/unfold_less_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/unfold_less_sharp.svg b/outputs/icons/navigation/unfold_less_sharp.svg deleted file mode 100644 index 2fbb3343..00000000 --- a/outputs/icons/navigation/unfold_less_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/unfold_more_round.svg b/outputs/icons/navigation/unfold_more_round.svg deleted file mode 100644 index ee215a52..00000000 --- a/outputs/icons/navigation/unfold_more_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/navigation/unfold_more_sharp.svg b/outputs/icons/navigation/unfold_more_sharp.svg deleted file mode 100644 index 2cbf9ccc..00000000 --- a/outputs/icons/navigation/unfold_more_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_admin_round.svg b/outputs/icons/people/person_admin_round.svg deleted file mode 100644 index 113323f0..00000000 --- a/outputs/icons/people/person_admin_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_admin_sharp.svg b/outputs/icons/people/person_admin_sharp.svg deleted file mode 100644 index 113323f0..00000000 --- a/outputs/icons/people/person_admin_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_assign_round.svg b/outputs/icons/people/person_assign_round.svg deleted file mode 100644 index 32f84bfc..00000000 --- a/outputs/icons/people/person_assign_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_assign_sharp.svg b/outputs/icons/people/person_assign_sharp.svg deleted file mode 100644 index 32f84bfc..00000000 --- a/outputs/icons/people/person_assign_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_clock_round.svg b/outputs/icons/people/person_clock_round.svg deleted file mode 100644 index e38a6ad6..00000000 --- a/outputs/icons/people/person_clock_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_clock_sharp.svg b/outputs/icons/people/person_clock_sharp.svg deleted file mode 100644 index e38a6ad6..00000000 --- a/outputs/icons/people/person_clock_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_info_round.svg b/outputs/icons/people/person_info_round.svg deleted file mode 100644 index fedb5b85..00000000 --- a/outputs/icons/people/person_info_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_info_sharp.svg b/outputs/icons/people/person_info_sharp.svg deleted file mode 100644 index fedb5b85..00000000 --- a/outputs/icons/people/person_info_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_manager_round.svg b/outputs/icons/people/person_manager_round.svg deleted file mode 100644 index 7ab9c93e..00000000 --- a/outputs/icons/people/person_manager_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_manager_sharp.svg b/outputs/icons/people/person_manager_sharp.svg deleted file mode 100644 index 7ab9c93e..00000000 --- a/outputs/icons/people/person_manager_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_move_round.svg b/outputs/icons/people/person_move_round.svg deleted file mode 100644 index 61dfb0b1..00000000 --- a/outputs/icons/people/person_move_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_move_sharp.svg b/outputs/icons/people/person_move_sharp.svg deleted file mode 100644 index 61dfb0b1..00000000 --- a/outputs/icons/people/person_move_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_swap_round.svg b/outputs/icons/people/person_swap_round.svg deleted file mode 100644 index d8e08a77..00000000 --- a/outputs/icons/people/person_swap_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_swap_sharp.svg b/outputs/icons/people/person_swap_sharp.svg deleted file mode 100644 index d8e08a77..00000000 --- a/outputs/icons/people/person_swap_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_walk_round.svg b/outputs/icons/people/person_walk_round.svg deleted file mode 100644 index a7f2054d..00000000 --- a/outputs/icons/people/person_walk_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/person_walk_sharp.svg b/outputs/icons/people/person_walk_sharp.svg deleted file mode 100644 index a7f2054d..00000000 --- a/outputs/icons/people/person_walk_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/user_minor_round.svg b/outputs/icons/people/user_minor_round.svg deleted file mode 100644 index 3f49a3d6..00000000 --- a/outputs/icons/people/user_minor_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/people/user_minor_sharp.svg b/outputs/icons/people/user_minor_sharp.svg deleted file mode 100644 index 3f49a3d6..00000000 --- a/outputs/icons/people/user_minor_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/add_group_round.svg b/outputs/icons/social/add_group_round.svg deleted file mode 100644 index cbab23f8..00000000 --- a/outputs/icons/social/add_group_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/add_group_sharp.svg b/outputs/icons/social/add_group_sharp.svg deleted file mode 100644 index fef9c643..00000000 --- a/outputs/icons/social/add_group_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/add_person_round.svg b/outputs/icons/social/add_person_round.svg deleted file mode 100644 index 887cd7a1..00000000 --- a/outputs/icons/social/add_person_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/add_person_sharp.svg b/outputs/icons/social/add_person_sharp.svg deleted file mode 100644 index b3613257..00000000 --- a/outputs/icons/social/add_person_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/bad_mood_round.svg b/outputs/icons/social/bad_mood_round.svg deleted file mode 100644 index 3b2c977d..00000000 --- a/outputs/icons/social/bad_mood_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/bad_mood_sharp.svg b/outputs/icons/social/bad_mood_sharp.svg deleted file mode 100644 index 4375e0f0..00000000 --- a/outputs/icons/social/bad_mood_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/blog_round.svg b/outputs/icons/social/blog_round.svg deleted file mode 100644 index a9559ecb..00000000 --- a/outputs/icons/social/blog_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/blog_sharp.svg b/outputs/icons/social/blog_sharp.svg deleted file mode 100644 index f771a6a5..00000000 --- a/outputs/icons/social/blog_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/certified_round.svg b/outputs/icons/social/certified_round.svg deleted file mode 100644 index b70f59db..00000000 --- a/outputs/icons/social/certified_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/certified_sharp.svg b/outputs/icons/social/certified_sharp.svg deleted file mode 100644 index b70f59db..00000000 --- a/outputs/icons/social/certified_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/facebook_round.svg b/outputs/icons/social/facebook_round.svg deleted file mode 100644 index 60c29617..00000000 --- a/outputs/icons/social/facebook_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/facebook_sharp.svg b/outputs/icons/social/facebook_sharp.svg deleted file mode 100644 index a72c7a77..00000000 --- a/outputs/icons/social/facebook_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/group_round.svg b/outputs/icons/social/group_round.svg deleted file mode 100644 index ce823bda..00000000 --- a/outputs/icons/social/group_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/group_sharp.svg b/outputs/icons/social/group_sharp.svg deleted file mode 100644 index 4bb10beb..00000000 --- a/outputs/icons/social/group_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/groups_round.svg b/outputs/icons/social/groups_round.svg deleted file mode 100644 index 218a6a1b..00000000 --- a/outputs/icons/social/groups_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/groups_sharp.svg b/outputs/icons/social/groups_sharp.svg deleted file mode 100644 index cfa87a01..00000000 --- a/outputs/icons/social/groups_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/happy_round.svg b/outputs/icons/social/happy_round.svg deleted file mode 100644 index 153dfe9a..00000000 --- a/outputs/icons/social/happy_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/happy_sharp.svg b/outputs/icons/social/happy_sharp.svg deleted file mode 100644 index 2ba3d45f..00000000 --- a/outputs/icons/social/happy_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/instagram_round.svg b/outputs/icons/social/instagram_round.svg deleted file mode 100644 index 20b1aa87..00000000 --- a/outputs/icons/social/instagram_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/instagram_sharp.svg b/outputs/icons/social/instagram_sharp.svg deleted file mode 100644 index b2a99226..00000000 --- a/outputs/icons/social/instagram_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/linkedin_round.svg b/outputs/icons/social/linkedin_round.svg deleted file mode 100644 index 56161d97..00000000 --- a/outputs/icons/social/linkedin_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/linkedin_sharp.svg b/outputs/icons/social/linkedin_sharp.svg deleted file mode 100644 index a6708aa5..00000000 --- a/outputs/icons/social/linkedin_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/medium_round.svg b/outputs/icons/social/medium_round.svg deleted file mode 100644 index a771d1d5..00000000 --- a/outputs/icons/social/medium_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/medium_sharp.svg b/outputs/icons/social/medium_sharp.svg deleted file mode 100644 index cffd1eb1..00000000 --- a/outputs/icons/social/medium_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/money_euro_round.svg b/outputs/icons/social/money_euro_round.svg deleted file mode 100644 index 81c64228..00000000 --- a/outputs/icons/social/money_euro_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/money_euro_sharp.svg b/outputs/icons/social/money_euro_sharp.svg deleted file mode 100644 index 81c64228..00000000 --- a/outputs/icons/social/money_euro_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/money_pound_round.svg b/outputs/icons/social/money_pound_round.svg deleted file mode 100644 index d4d72297..00000000 --- a/outputs/icons/social/money_pound_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/money_pound_sharp.svg b/outputs/icons/social/money_pound_sharp.svg deleted file mode 100644 index d4d72297..00000000 --- a/outputs/icons/social/money_pound_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/money_usd_round.svg b/outputs/icons/social/money_usd_round.svg deleted file mode 100644 index b586a982..00000000 --- a/outputs/icons/social/money_usd_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/money_usd_sharp.svg b/outputs/icons/social/money_usd_sharp.svg deleted file mode 100644 index b586a982..00000000 --- a/outputs/icons/social/money_usd_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/partner_round.svg b/outputs/icons/social/partner_round.svg deleted file mode 100644 index 027af8b3..00000000 --- a/outputs/icons/social/partner_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/partner_sharp.svg b/outputs/icons/social/partner_sharp.svg deleted file mode 100644 index 027af8b3..00000000 --- a/outputs/icons/social/partner_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/person_outline_round.svg b/outputs/icons/social/person_outline_round.svg deleted file mode 100644 index 34d19361..00000000 --- a/outputs/icons/social/person_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/person_outline_sharp.svg b/outputs/icons/social/person_outline_sharp.svg deleted file mode 100644 index 58a65e2c..00000000 --- a/outputs/icons/social/person_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/person_round.svg b/outputs/icons/social/person_round.svg deleted file mode 100644 index 99887822..00000000 --- a/outputs/icons/social/person_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/person_sharp.svg b/outputs/icons/social/person_sharp.svg deleted file mode 100644 index c86d681f..00000000 --- a/outputs/icons/social/person_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/phrase_round.svg b/outputs/icons/social/phrase_round.svg deleted file mode 100644 index 24b58dff..00000000 --- a/outputs/icons/social/phrase_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/phrase_sharp.svg b/outputs/icons/social/phrase_sharp.svg deleted file mode 100644 index 24b58dff..00000000 --- a/outputs/icons/social/phrase_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_gift_round.svg b/outputs/icons/social/point_gift_round.svg deleted file mode 100644 index 4ef0616b..00000000 --- a/outputs/icons/social/point_gift_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_gift_sharp.svg b/outputs/icons/social/point_gift_sharp.svg deleted file mode 100644 index 4ef0616b..00000000 --- a/outputs/icons/social/point_gift_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_heart_round.svg b/outputs/icons/social/point_heart_round.svg deleted file mode 100644 index 50112aab..00000000 --- a/outputs/icons/social/point_heart_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_heart_sharp.svg b/outputs/icons/social/point_heart_sharp.svg deleted file mode 100644 index 50112aab..00000000 --- a/outputs/icons/social/point_heart_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_money_round.svg b/outputs/icons/social/point_money_round.svg deleted file mode 100644 index 4e07aa8b..00000000 --- a/outputs/icons/social/point_money_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_money_sharp.svg b/outputs/icons/social/point_money_sharp.svg deleted file mode 100644 index 4e07aa8b..00000000 --- a/outputs/icons/social/point_money_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_star_round.svg b/outputs/icons/social/point_star_round.svg deleted file mode 100644 index 5fa0e4ad..00000000 --- a/outputs/icons/social/point_star_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/point_star_sharp.svg b/outputs/icons/social/point_star_sharp.svg deleted file mode 100644 index 5fa0e4ad..00000000 --- a/outputs/icons/social/point_star_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/remove_group_round.svg b/outputs/icons/social/remove_group_round.svg deleted file mode 100644 index 68942b95..00000000 --- a/outputs/icons/social/remove_group_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/remove_group_sharp.svg b/outputs/icons/social/remove_group_sharp.svg deleted file mode 100644 index fbfe9b95..00000000 --- a/outputs/icons/social/remove_group_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/remove_person_round.svg b/outputs/icons/social/remove_person_round.svg deleted file mode 100644 index 05e9c1a7..00000000 --- a/outputs/icons/social/remove_person_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/remove_person_sharp.svg b/outputs/icons/social/remove_person_sharp.svg deleted file mode 100644 index d13d3e4e..00000000 --- a/outputs/icons/social/remove_person_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/sad_round.svg b/outputs/icons/social/sad_round.svg deleted file mode 100644 index 93c0168c..00000000 --- a/outputs/icons/social/sad_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/sad_sharp.svg b/outputs/icons/social/sad_sharp.svg deleted file mode 100644 index e355d799..00000000 --- a/outputs/icons/social/sad_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/satisfied_round.svg b/outputs/icons/social/satisfied_round.svg deleted file mode 100644 index 6ceade9d..00000000 --- a/outputs/icons/social/satisfied_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/satisfied_sharp.svg b/outputs/icons/social/satisfied_sharp.svg deleted file mode 100644 index 466a748b..00000000 --- a/outputs/icons/social/satisfied_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/switch_user_round.svg b/outputs/icons/social/switch_user_round.svg deleted file mode 100644 index 70089925..00000000 --- a/outputs/icons/social/switch_user_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/switch_user_sharp.svg b/outputs/icons/social/switch_user_sharp.svg deleted file mode 100644 index 4c4d66b3..00000000 --- a/outputs/icons/social/switch_user_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/twitter_round.svg b/outputs/icons/social/twitter_round.svg deleted file mode 100644 index e5d3e98a..00000000 --- a/outputs/icons/social/twitter_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/twitter_sharp.svg b/outputs/icons/social/twitter_sharp.svg deleted file mode 100644 index a9c90376..00000000 --- a/outputs/icons/social/twitter_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/very_satisfied_round.svg b/outputs/icons/social/very_satisfied_round.svg deleted file mode 100644 index 5dbe7b88..00000000 --- a/outputs/icons/social/very_satisfied_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/very_satisfied_sharp.svg b/outputs/icons/social/very_satisfied_sharp.svg deleted file mode 100644 index ab4723e7..00000000 --- a/outputs/icons/social/very_satisfied_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/youtube_round.svg b/outputs/icons/social/youtube_round.svg deleted file mode 100644 index 5fa979a2..00000000 --- a/outputs/icons/social/youtube_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/social/youtube_sharp.svg b/outputs/icons/social/youtube_sharp.svg deleted file mode 100644 index 03cd1f4a..00000000 --- a/outputs/icons/social/youtube_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/check_box_empty_round.svg b/outputs/icons/toggle/check_box_empty_round.svg deleted file mode 100644 index 52f7dc8a..00000000 --- a/outputs/icons/toggle/check_box_empty_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/check_box_empty_sharp.svg b/outputs/icons/toggle/check_box_empty_sharp.svg deleted file mode 100644 index 5033de8d..00000000 --- a/outputs/icons/toggle/check_box_empty_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/check_box_round.svg b/outputs/icons/toggle/check_box_round.svg deleted file mode 100644 index 2ffb62b6..00000000 --- a/outputs/icons/toggle/check_box_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/check_box_sharp.svg b/outputs/icons/toggle/check_box_sharp.svg deleted file mode 100644 index 917c6891..00000000 --- a/outputs/icons/toggle/check_box_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/indeterminate_check_box_round.svg b/outputs/icons/toggle/indeterminate_check_box_round.svg deleted file mode 100644 index 9dc8084f..00000000 --- a/outputs/icons/toggle/indeterminate_check_box_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/indeterminate_check_box_sharp.svg b/outputs/icons/toggle/indeterminate_check_box_sharp.svg deleted file mode 100644 index 133e274b..00000000 --- a/outputs/icons/toggle/indeterminate_check_box_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/radio_button_checked_round.svg b/outputs/icons/toggle/radio_button_checked_round.svg deleted file mode 100644 index b20ca7e0..00000000 --- a/outputs/icons/toggle/radio_button_checked_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/radio_button_checked_sharp.svg b/outputs/icons/toggle/radio_button_checked_sharp.svg deleted file mode 100644 index 98c015e3..00000000 --- a/outputs/icons/toggle/radio_button_checked_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/radio_button_unchecked_round.svg b/outputs/icons/toggle/radio_button_unchecked_round.svg deleted file mode 100644 index 0e653415..00000000 --- a/outputs/icons/toggle/radio_button_unchecked_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/radio_button_unchecked_sharp.svg b/outputs/icons/toggle/radio_button_unchecked_sharp.svg deleted file mode 100644 index d94ac487..00000000 --- a/outputs/icons/toggle/radio_button_unchecked_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/star_half_round.svg b/outputs/icons/toggle/star_half_round.svg deleted file mode 100644 index 1ec48696..00000000 --- a/outputs/icons/toggle/star_half_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/star_half_sharp.svg b/outputs/icons/toggle/star_half_sharp.svg deleted file mode 100644 index 2b182cb8..00000000 --- a/outputs/icons/toggle/star_half_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/star_outline_round.svg b/outputs/icons/toggle/star_outline_round.svg deleted file mode 100644 index 88619ca5..00000000 --- a/outputs/icons/toggle/star_outline_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/star_outline_sharp.svg b/outputs/icons/toggle/star_outline_sharp.svg deleted file mode 100644 index cb40d9f0..00000000 --- a/outputs/icons/toggle/star_outline_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/star_round.svg b/outputs/icons/toggle/star_round.svg deleted file mode 100644 index cec186ce..00000000 --- a/outputs/icons/toggle/star_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/star_sharp.svg b/outputs/icons/toggle/star_sharp.svg deleted file mode 100644 index 15283429..00000000 --- a/outputs/icons/toggle/star_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/toggle_off_round.svg b/outputs/icons/toggle/toggle_off_round.svg deleted file mode 100644 index 83380e44..00000000 --- a/outputs/icons/toggle/toggle_off_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/toggle_off_sharp.svg b/outputs/icons/toggle/toggle_off_sharp.svg deleted file mode 100644 index bef8e79e..00000000 --- a/outputs/icons/toggle/toggle_off_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/toggle_on_round.svg b/outputs/icons/toggle/toggle_on_round.svg deleted file mode 100644 index def88712..00000000 --- a/outputs/icons/toggle/toggle_on_round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/icons/toggle/toggle_on_sharp.svg b/outputs/icons/toggle/toggle_on_sharp.svg deleted file mode 100644 index 207a0f12..00000000 --- a/outputs/icons/toggle/toggle_on_sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/outputs/png/activity_round.png b/outputs/png/activity_round.png deleted file mode 100644 index dcc02b23..00000000 Binary files a/outputs/png/activity_round.png and /dev/null differ diff --git a/outputs/png/activity_sharp.png b/outputs/png/activity_sharp.png deleted file mode 100644 index dcc02b23..00000000 Binary files a/outputs/png/activity_sharp.png and /dev/null differ diff --git a/outputs/png/add_alert_round.png b/outputs/png/add_alert_round.png deleted file mode 100644 index 61d3d446..00000000 Binary files a/outputs/png/add_alert_round.png and /dev/null differ diff --git a/outputs/png/add_alert_sharp.png b/outputs/png/add_alert_sharp.png deleted file mode 100644 index cfdb0b96..00000000 Binary files a/outputs/png/add_alert_sharp.png and /dev/null differ diff --git a/outputs/png/add_box_round.png b/outputs/png/add_box_round.png deleted file mode 100644 index f7a4897d..00000000 Binary files a/outputs/png/add_box_round.png and /dev/null differ diff --git a/outputs/png/add_box_sharp.png b/outputs/png/add_box_sharp.png deleted file mode 100644 index b3993294..00000000 Binary files a/outputs/png/add_box_sharp.png and /dev/null differ diff --git a/outputs/png/add_call_round.png b/outputs/png/add_call_round.png deleted file mode 100644 index 9a5a7dc4..00000000 Binary files a/outputs/png/add_call_round.png and /dev/null differ diff --git a/outputs/png/add_call_sharp.png b/outputs/png/add_call_sharp.png deleted file mode 100644 index 940e107a..00000000 Binary files a/outputs/png/add_call_sharp.png and /dev/null differ diff --git a/outputs/png/add_circle_outline_round.png b/outputs/png/add_circle_outline_round.png deleted file mode 100644 index 5c99f083..00000000 Binary files a/outputs/png/add_circle_outline_round.png and /dev/null differ diff --git a/outputs/png/add_circle_outline_sharp.png b/outputs/png/add_circle_outline_sharp.png deleted file mode 100644 index 582db062..00000000 Binary files a/outputs/png/add_circle_outline_sharp.png and /dev/null differ diff --git a/outputs/png/add_circle_round.png b/outputs/png/add_circle_round.png deleted file mode 100644 index 9c1a482f..00000000 Binary files a/outputs/png/add_circle_round.png and /dev/null differ diff --git a/outputs/png/add_circle_sharp.png b/outputs/png/add_circle_sharp.png deleted file mode 100644 index 6f17ca78..00000000 Binary files a/outputs/png/add_circle_sharp.png and /dev/null differ diff --git a/outputs/png/add_group_round.png b/outputs/png/add_group_round.png deleted file mode 100644 index 270111ec..00000000 Binary files a/outputs/png/add_group_round.png and /dev/null differ diff --git a/outputs/png/add_group_sharp.png b/outputs/png/add_group_sharp.png deleted file mode 100644 index bc47f01f..00000000 Binary files a/outputs/png/add_group_sharp.png and /dev/null differ diff --git a/outputs/png/add_person_round.png b/outputs/png/add_person_round.png deleted file mode 100644 index b6426034..00000000 Binary files a/outputs/png/add_person_round.png and /dev/null differ diff --git a/outputs/png/add_person_sharp.png b/outputs/png/add_person_sharp.png deleted file mode 100644 index 548d36c4..00000000 Binary files a/outputs/png/add_person_sharp.png and /dev/null differ diff --git a/outputs/png/add_round.png b/outputs/png/add_round.png deleted file mode 100644 index fcbbfddc..00000000 Binary files a/outputs/png/add_round.png and /dev/null differ diff --git a/outputs/png/add_sharp.png b/outputs/png/add_sharp.png deleted file mode 100644 index 3768b359..00000000 Binary files a/outputs/png/add_sharp.png and /dev/null differ diff --git a/outputs/png/add_task_round.png b/outputs/png/add_task_round.png deleted file mode 100644 index 5b78370f..00000000 Binary files a/outputs/png/add_task_round.png and /dev/null differ diff --git a/outputs/png/add_task_sharp.png b/outputs/png/add_task_sharp.png deleted file mode 100644 index 5b78370f..00000000 Binary files a/outputs/png/add_task_sharp.png and /dev/null differ diff --git a/outputs/png/adjustments_round.png b/outputs/png/adjustments_round.png deleted file mode 100644 index 01ce6b5e..00000000 Binary files a/outputs/png/adjustments_round.png and /dev/null differ diff --git a/outputs/png/adjustments_sharp.png b/outputs/png/adjustments_sharp.png deleted file mode 100644 index da1d1b35..00000000 Binary files a/outputs/png/adjustments_sharp.png and /dev/null differ diff --git a/outputs/png/alarm_round.png b/outputs/png/alarm_round.png deleted file mode 100644 index e16ca28f..00000000 Binary files a/outputs/png/alarm_round.png and /dev/null differ diff --git a/outputs/png/alarm_sharp.png b/outputs/png/alarm_sharp.png deleted file mode 100644 index a0d9207e..00000000 Binary files a/outputs/png/alarm_sharp.png and /dev/null differ diff --git a/outputs/png/alert_active_round.png b/outputs/png/alert_active_round.png deleted file mode 100644 index 435a1169..00000000 Binary files a/outputs/png/alert_active_round.png and /dev/null differ diff --git a/outputs/png/alert_active_sharp.png b/outputs/png/alert_active_sharp.png deleted file mode 100644 index 0f86f5bf..00000000 Binary files a/outputs/png/alert_active_sharp.png and /dev/null differ diff --git a/outputs/png/alert_outline_round.png b/outputs/png/alert_outline_round.png deleted file mode 100644 index a91da0a4..00000000 Binary files a/outputs/png/alert_outline_round.png and /dev/null differ diff --git a/outputs/png/alert_outline_sharp.png b/outputs/png/alert_outline_sharp.png deleted file mode 100644 index 4979ea83..00000000 Binary files a/outputs/png/alert_outline_sharp.png and /dev/null differ diff --git a/outputs/png/alert_round.png b/outputs/png/alert_round.png deleted file mode 100644 index c236e142..00000000 Binary files a/outputs/png/alert_round.png and /dev/null differ diff --git a/outputs/png/alert_sharp.png b/outputs/png/alert_sharp.png deleted file mode 100644 index 45a59608..00000000 Binary files a/outputs/png/alert_sharp.png and /dev/null differ diff --git a/outputs/png/align_center_round.png b/outputs/png/align_center_round.png deleted file mode 100644 index 9b75a7ce..00000000 Binary files a/outputs/png/align_center_round.png and /dev/null differ diff --git a/outputs/png/align_center_sharp.png b/outputs/png/align_center_sharp.png deleted file mode 100644 index 4e6b1521..00000000 Binary files a/outputs/png/align_center_sharp.png and /dev/null differ diff --git a/outputs/png/align_horizontal_center_round.png b/outputs/png/align_horizontal_center_round.png deleted file mode 100644 index b4b84c90..00000000 Binary files a/outputs/png/align_horizontal_center_round.png and /dev/null differ diff --git a/outputs/png/align_horizontal_center_sharp.png b/outputs/png/align_horizontal_center_sharp.png deleted file mode 100644 index 02a9e235..00000000 Binary files a/outputs/png/align_horizontal_center_sharp.png and /dev/null differ diff --git a/outputs/png/align_horizontal_left_round.png b/outputs/png/align_horizontal_left_round.png deleted file mode 100644 index cf3144d1..00000000 Binary files a/outputs/png/align_horizontal_left_round.png and /dev/null differ diff --git a/outputs/png/align_horizontal_left_sharp.png b/outputs/png/align_horizontal_left_sharp.png deleted file mode 100644 index 58543173..00000000 Binary files a/outputs/png/align_horizontal_left_sharp.png and /dev/null differ diff --git a/outputs/png/align_horizontal_right_round.png b/outputs/png/align_horizontal_right_round.png deleted file mode 100644 index 2f56e68e..00000000 Binary files a/outputs/png/align_horizontal_right_round.png and /dev/null differ diff --git a/outputs/png/align_horizontal_right_sharp.png b/outputs/png/align_horizontal_right_sharp.png deleted file mode 100644 index 20dc08a6..00000000 Binary files a/outputs/png/align_horizontal_right_sharp.png and /dev/null differ diff --git a/outputs/png/align_left_round.png b/outputs/png/align_left_round.png deleted file mode 100644 index 2eeccd60..00000000 Binary files a/outputs/png/align_left_round.png and /dev/null differ diff --git a/outputs/png/align_left_sharp.png b/outputs/png/align_left_sharp.png deleted file mode 100644 index 284a98c3..00000000 Binary files a/outputs/png/align_left_sharp.png and /dev/null differ diff --git a/outputs/png/align_right_round.png b/outputs/png/align_right_round.png deleted file mode 100644 index 777504f7..00000000 Binary files a/outputs/png/align_right_round.png and /dev/null differ diff --git a/outputs/png/align_right_sharp.png b/outputs/png/align_right_sharp.png deleted file mode 100644 index f768d229..00000000 Binary files a/outputs/png/align_right_sharp.png and /dev/null differ diff --git a/outputs/png/align_vertical_bottom_round.png b/outputs/png/align_vertical_bottom_round.png deleted file mode 100644 index ed8959b3..00000000 Binary files a/outputs/png/align_vertical_bottom_round.png and /dev/null differ diff --git a/outputs/png/align_vertical_bottom_sharp.png b/outputs/png/align_vertical_bottom_sharp.png deleted file mode 100644 index 922b0d22..00000000 Binary files a/outputs/png/align_vertical_bottom_sharp.png and /dev/null differ diff --git a/outputs/png/align_vertical_center_round.png b/outputs/png/align_vertical_center_round.png deleted file mode 100644 index 56d00049..00000000 Binary files a/outputs/png/align_vertical_center_round.png and /dev/null differ diff --git a/outputs/png/align_vertical_center_sharp.png b/outputs/png/align_vertical_center_sharp.png deleted file mode 100644 index 4cb5befa..00000000 Binary files a/outputs/png/align_vertical_center_sharp.png and /dev/null differ diff --git a/outputs/png/align_vertical_top_round.png b/outputs/png/align_vertical_top_round.png deleted file mode 100644 index 53d3b949..00000000 Binary files a/outputs/png/align_vertical_top_round.png and /dev/null differ diff --git a/outputs/png/align_vertical_top_sharp.png b/outputs/png/align_vertical_top_sharp.png deleted file mode 100644 index 4b8e9deb..00000000 Binary files a/outputs/png/align_vertical_top_sharp.png and /dev/null differ diff --git a/outputs/png/analytics_round.png b/outputs/png/analytics_round.png deleted file mode 100644 index 15727eae..00000000 Binary files a/outputs/png/analytics_round.png and /dev/null differ diff --git a/outputs/png/analytics_sharp.png b/outputs/png/analytics_sharp.png deleted file mode 100644 index 15727eae..00000000 Binary files a/outputs/png/analytics_sharp.png and /dev/null differ diff --git a/outputs/png/android_round.png b/outputs/png/android_round.png deleted file mode 100644 index 22c65017..00000000 Binary files a/outputs/png/android_round.png and /dev/null differ diff --git a/outputs/png/android_sharp.png b/outputs/png/android_sharp.png deleted file mode 100644 index 22c65017..00000000 Binary files a/outputs/png/android_sharp.png and /dev/null differ diff --git a/outputs/png/antenna_round.png b/outputs/png/antenna_round.png deleted file mode 100644 index ed2f7b0c..00000000 Binary files a/outputs/png/antenna_round.png and /dev/null differ diff --git a/outputs/png/antenna_sharp.png b/outputs/png/antenna_sharp.png deleted file mode 100644 index 38915aa0..00000000 Binary files a/outputs/png/antenna_sharp.png and /dev/null differ diff --git a/outputs/png/app_edit_round.png b/outputs/png/app_edit_round.png deleted file mode 100644 index a8b9c168..00000000 Binary files a/outputs/png/app_edit_round.png and /dev/null differ diff --git a/outputs/png/app_edit_sharp.png b/outputs/png/app_edit_sharp.png deleted file mode 100644 index a8b9c168..00000000 Binary files a/outputs/png/app_edit_sharp.png and /dev/null differ diff --git a/outputs/png/apps_round.png b/outputs/png/apps_round.png deleted file mode 100644 index 8a21c9a7..00000000 Binary files a/outputs/png/apps_round.png and /dev/null differ diff --git a/outputs/png/apps_sharp.png b/outputs/png/apps_sharp.png deleted file mode 100644 index 0cf12f5a..00000000 Binary files a/outputs/png/apps_sharp.png and /dev/null differ diff --git a/outputs/png/ar_round.png b/outputs/png/ar_round.png deleted file mode 100644 index 22e98b4f..00000000 Binary files a/outputs/png/ar_round.png and /dev/null differ diff --git a/outputs/png/ar_sharp.png b/outputs/png/ar_sharp.png deleted file mode 100644 index 8bf516f6..00000000 Binary files a/outputs/png/ar_sharp.png and /dev/null differ diff --git a/outputs/png/arrow_back_round.png b/outputs/png/arrow_back_round.png deleted file mode 100644 index 1f7b56ac..00000000 Binary files a/outputs/png/arrow_back_round.png and /dev/null differ diff --git a/outputs/png/arrow_back_sharp.png b/outputs/png/arrow_back_sharp.png deleted file mode 100644 index fbe8595c..00000000 Binary files a/outputs/png/arrow_back_sharp.png and /dev/null differ diff --git a/outputs/png/arrow_down_round.png b/outputs/png/arrow_down_round.png deleted file mode 100644 index aadb99d9..00000000 Binary files a/outputs/png/arrow_down_round.png and /dev/null differ diff --git a/outputs/png/arrow_down_sharp.png b/outputs/png/arrow_down_sharp.png deleted file mode 100644 index 70330c7f..00000000 Binary files a/outputs/png/arrow_down_sharp.png and /dev/null differ diff --git a/outputs/png/arrow_forward_round.png b/outputs/png/arrow_forward_round.png deleted file mode 100644 index 5d417808..00000000 Binary files a/outputs/png/arrow_forward_round.png and /dev/null differ diff --git a/outputs/png/arrow_forward_sharp.png b/outputs/png/arrow_forward_sharp.png deleted file mode 100644 index 1803d17e..00000000 Binary files a/outputs/png/arrow_forward_sharp.png and /dev/null differ diff --git a/outputs/png/arrow_up_round.png b/outputs/png/arrow_up_round.png deleted file mode 100644 index 3c31961d..00000000 Binary files a/outputs/png/arrow_up_round.png and /dev/null differ diff --git a/outputs/png/arrow_up_sharp.png b/outputs/png/arrow_up_sharp.png deleted file mode 100644 index cd4529de..00000000 Binary files a/outputs/png/arrow_up_sharp.png and /dev/null differ diff --git a/outputs/png/attachment_round.png b/outputs/png/attachment_round.png deleted file mode 100644 index 9158b7b7..00000000 Binary files a/outputs/png/attachment_round.png and /dev/null differ diff --git a/outputs/png/attachment_sharp.png b/outputs/png/attachment_sharp.png deleted file mode 100644 index 5cda2485..00000000 Binary files a/outputs/png/attachment_sharp.png and /dev/null differ diff --git a/outputs/png/audio_round.png b/outputs/png/audio_round.png deleted file mode 100644 index 99906796..00000000 Binary files a/outputs/png/audio_round.png and /dev/null differ diff --git a/outputs/png/audio_sharp.png b/outputs/png/audio_sharp.png deleted file mode 100644 index 99906796..00000000 Binary files a/outputs/png/audio_sharp.png and /dev/null differ diff --git a/outputs/png/audit_activity_round.png b/outputs/png/audit_activity_round.png deleted file mode 100644 index 24ead8a2..00000000 Binary files a/outputs/png/audit_activity_round.png and /dev/null differ diff --git a/outputs/png/audit_activity_sharp.png b/outputs/png/audit_activity_sharp.png deleted file mode 100644 index 24ead8a2..00000000 Binary files a/outputs/png/audit_activity_sharp.png and /dev/null differ diff --git a/outputs/png/auto_delete_round.png b/outputs/png/auto_delete_round.png deleted file mode 100644 index 58dd7946..00000000 Binary files a/outputs/png/auto_delete_round.png and /dev/null differ diff --git a/outputs/png/auto_delete_sharp.png b/outputs/png/auto_delete_sharp.png deleted file mode 100644 index b27553ee..00000000 Binary files a/outputs/png/auto_delete_sharp.png and /dev/null differ diff --git a/outputs/png/auto_round.png b/outputs/png/auto_round.png deleted file mode 100644 index b1cdfc82..00000000 Binary files a/outputs/png/auto_round.png and /dev/null differ diff --git a/outputs/png/auto_sharp.png b/outputs/png/auto_sharp.png deleted file mode 100644 index b1cdfc82..00000000 Binary files a/outputs/png/auto_sharp.png and /dev/null differ diff --git a/outputs/png/awb_round.png b/outputs/png/awb_round.png deleted file mode 100644 index 8161e4df..00000000 Binary files a/outputs/png/awb_round.png and /dev/null differ diff --git a/outputs/png/awb_sharp.png b/outputs/png/awb_sharp.png deleted file mode 100644 index 8161e4df..00000000 Binary files a/outputs/png/awb_sharp.png and /dev/null differ diff --git a/outputs/png/backspace_round.png b/outputs/png/backspace_round.png deleted file mode 100644 index 64d69e2b..00000000 Binary files a/outputs/png/backspace_round.png and /dev/null differ diff --git a/outputs/png/backspace_sharp.png b/outputs/png/backspace_sharp.png deleted file mode 100644 index b223df78..00000000 Binary files a/outputs/png/backspace_sharp.png and /dev/null differ diff --git a/outputs/png/bad_mood_round.png b/outputs/png/bad_mood_round.png deleted file mode 100644 index 0a24d149..00000000 Binary files a/outputs/png/bad_mood_round.png and /dev/null differ diff --git a/outputs/png/bad_mood_sharp.png b/outputs/png/bad_mood_sharp.png deleted file mode 100644 index 592bd612..00000000 Binary files a/outputs/png/bad_mood_sharp.png and /dev/null differ diff --git a/outputs/png/barcode_bluetooth_round.png b/outputs/png/barcode_bluetooth_round.png deleted file mode 100644 index c3b32bae..00000000 Binary files a/outputs/png/barcode_bluetooth_round.png and /dev/null differ diff --git a/outputs/png/barcode_bluetooth_sharp.png b/outputs/png/barcode_bluetooth_sharp.png deleted file mode 100644 index c3b32bae..00000000 Binary files a/outputs/png/barcode_bluetooth_sharp.png and /dev/null differ diff --git a/outputs/png/barcode_done_round.png b/outputs/png/barcode_done_round.png deleted file mode 100644 index e4b4c44d..00000000 Binary files a/outputs/png/barcode_done_round.png and /dev/null differ diff --git a/outputs/png/barcode_done_sharp.png b/outputs/png/barcode_done_sharp.png deleted file mode 100644 index e4b4c44d..00000000 Binary files a/outputs/png/barcode_done_sharp.png and /dev/null differ diff --git a/outputs/png/barcode_image_scan_round.png b/outputs/png/barcode_image_scan_round.png deleted file mode 100644 index 1db2fd79..00000000 Binary files a/outputs/png/barcode_image_scan_round.png and /dev/null differ diff --git a/outputs/png/barcode_image_scan_sharp.png b/outputs/png/barcode_image_scan_sharp.png deleted file mode 100644 index 1db2fd79..00000000 Binary files a/outputs/png/barcode_image_scan_sharp.png and /dev/null differ diff --git a/outputs/png/barcode_qr_code_round.png b/outputs/png/barcode_qr_code_round.png deleted file mode 100644 index 7c284bd0..00000000 Binary files a/outputs/png/barcode_qr_code_round.png and /dev/null differ diff --git a/outputs/png/barcode_qr_code_sharp.png b/outputs/png/barcode_qr_code_sharp.png deleted file mode 100644 index 7c284bd0..00000000 Binary files a/outputs/png/barcode_qr_code_sharp.png and /dev/null differ diff --git a/outputs/png/barcode_round.png b/outputs/png/barcode_round.png deleted file mode 100644 index 9dbf0bdf..00000000 Binary files a/outputs/png/barcode_round.png and /dev/null differ diff --git a/outputs/png/barcode_scanner_down_round.png b/outputs/png/barcode_scanner_down_round.png deleted file mode 100644 index 4cec7168..00000000 Binary files a/outputs/png/barcode_scanner_down_round.png and /dev/null differ diff --git a/outputs/png/barcode_scanner_down_sharp.png b/outputs/png/barcode_scanner_down_sharp.png deleted file mode 100644 index 4cec7168..00000000 Binary files a/outputs/png/barcode_scanner_down_sharp.png and /dev/null differ diff --git a/outputs/png/barcode_settings_round.png b/outputs/png/barcode_settings_round.png deleted file mode 100644 index 046e63da..00000000 Binary files a/outputs/png/barcode_settings_round.png and /dev/null differ diff --git a/outputs/png/barcode_settings_sharp.png b/outputs/png/barcode_settings_sharp.png deleted file mode 100644 index 046e63da..00000000 Binary files a/outputs/png/barcode_settings_sharp.png and /dev/null differ diff --git a/outputs/png/barcode_sharp.png b/outputs/png/barcode_sharp.png deleted file mode 100644 index 9dbf0bdf..00000000 Binary files a/outputs/png/barcode_sharp.png and /dev/null differ diff --git a/outputs/png/basket_round.png b/outputs/png/basket_round.png deleted file mode 100644 index fbcf2f7b..00000000 Binary files a/outputs/png/basket_round.png and /dev/null differ diff --git a/outputs/png/basket_sharp.png b/outputs/png/basket_sharp.png deleted file mode 100644 index fbcf2f7b..00000000 Binary files a/outputs/png/basket_sharp.png and /dev/null differ diff --git a/outputs/png/battery_alert_round.png b/outputs/png/battery_alert_round.png deleted file mode 100644 index 43d0484f..00000000 Binary files a/outputs/png/battery_alert_round.png and /dev/null differ diff --git a/outputs/png/battery_alert_sharp.png b/outputs/png/battery_alert_sharp.png deleted file mode 100644 index 504184b4..00000000 Binary files a/outputs/png/battery_alert_sharp.png and /dev/null differ diff --git a/outputs/png/battery_charging_round.png b/outputs/png/battery_charging_round.png deleted file mode 100644 index d9d905f9..00000000 Binary files a/outputs/png/battery_charging_round.png and /dev/null differ diff --git a/outputs/png/battery_charging_sharp.png b/outputs/png/battery_charging_sharp.png deleted file mode 100644 index 6d0f5704..00000000 Binary files a/outputs/png/battery_charging_sharp.png and /dev/null differ diff --git a/outputs/png/battery_round.png b/outputs/png/battery_round.png deleted file mode 100644 index cdd95e23..00000000 Binary files a/outputs/png/battery_round.png and /dev/null differ diff --git a/outputs/png/battery_sharp.png b/outputs/png/battery_sharp.png deleted file mode 100644 index c916cd30..00000000 Binary files a/outputs/png/battery_sharp.png and /dev/null differ diff --git a/outputs/png/block_content_round.png b/outputs/png/block_content_round.png deleted file mode 100644 index e5f263be..00000000 Binary files a/outputs/png/block_content_round.png and /dev/null differ diff --git a/outputs/png/block_content_sharp.png b/outputs/png/block_content_sharp.png deleted file mode 100644 index e5f263be..00000000 Binary files a/outputs/png/block_content_sharp.png and /dev/null differ diff --git a/outputs/png/block_round.png b/outputs/png/block_round.png deleted file mode 100644 index 21b3c416..00000000 Binary files a/outputs/png/block_round.png and /dev/null differ diff --git a/outputs/png/block_sharp.png b/outputs/png/block_sharp.png deleted file mode 100644 index b749a104..00000000 Binary files a/outputs/png/block_sharp.png and /dev/null differ diff --git a/outputs/png/blog_round.png b/outputs/png/blog_round.png deleted file mode 100644 index 608e73c3..00000000 Binary files a/outputs/png/blog_round.png and /dev/null differ diff --git a/outputs/png/blog_sharp.png b/outputs/png/blog_sharp.png deleted file mode 100644 index 608e73c3..00000000 Binary files a/outputs/png/blog_sharp.png and /dev/null differ diff --git a/outputs/png/bluetooth_disabled_round.png b/outputs/png/bluetooth_disabled_round.png deleted file mode 100644 index c19ce3a4..00000000 Binary files a/outputs/png/bluetooth_disabled_round.png and /dev/null differ diff --git a/outputs/png/bluetooth_disabled_sharp.png b/outputs/png/bluetooth_disabled_sharp.png deleted file mode 100644 index 664740d5..00000000 Binary files a/outputs/png/bluetooth_disabled_sharp.png and /dev/null differ diff --git a/outputs/png/bluetooth_round.png b/outputs/png/bluetooth_round.png deleted file mode 100644 index 49e8fa47..00000000 Binary files a/outputs/png/bluetooth_round.png and /dev/null differ diff --git a/outputs/png/bluetooth_searching_round.png b/outputs/png/bluetooth_searching_round.png deleted file mode 100644 index 6265ed74..00000000 Binary files a/outputs/png/bluetooth_searching_round.png and /dev/null differ diff --git a/outputs/png/bluetooth_searching_sharp.png b/outputs/png/bluetooth_searching_sharp.png deleted file mode 100644 index d012aab9..00000000 Binary files a/outputs/png/bluetooth_searching_sharp.png and /dev/null differ diff --git a/outputs/png/bluetooth_sharp.png b/outputs/png/bluetooth_sharp.png deleted file mode 100644 index c02e7160..00000000 Binary files a/outputs/png/bluetooth_sharp.png and /dev/null differ diff --git a/outputs/png/bold_round.png b/outputs/png/bold_round.png deleted file mode 100644 index 77523711..00000000 Binary files a/outputs/png/bold_round.png and /dev/null differ diff --git a/outputs/png/bold_sharp.png b/outputs/png/bold_sharp.png deleted file mode 100644 index 97441029..00000000 Binary files a/outputs/png/bold_sharp.png and /dev/null differ diff --git a/outputs/png/bookmark_outline_round.png b/outputs/png/bookmark_outline_round.png deleted file mode 100644 index b6fdf5de..00000000 Binary files a/outputs/png/bookmark_outline_round.png and /dev/null differ diff --git a/outputs/png/bookmark_outline_sharp.png b/outputs/png/bookmark_outline_sharp.png deleted file mode 100644 index 74d7877d..00000000 Binary files a/outputs/png/bookmark_outline_sharp.png and /dev/null differ diff --git a/outputs/png/bookmark_round.png b/outputs/png/bookmark_round.png deleted file mode 100644 index 5f5f3ff3..00000000 Binary files a/outputs/png/bookmark_round.png and /dev/null differ diff --git a/outputs/png/bookmark_sharp.png b/outputs/png/bookmark_sharp.png deleted file mode 100644 index e6b79e41..00000000 Binary files a/outputs/png/bookmark_sharp.png and /dev/null differ diff --git a/outputs/png/brightness_round.png b/outputs/png/brightness_round.png deleted file mode 100644 index 5dc0f174..00000000 Binary files a/outputs/png/brightness_round.png and /dev/null differ diff --git a/outputs/png/brightness_sharp.png b/outputs/png/brightness_sharp.png deleted file mode 100644 index e6d2f1bd..00000000 Binary files a/outputs/png/brightness_sharp.png and /dev/null differ diff --git a/outputs/png/broadcast_round.png b/outputs/png/broadcast_round.png deleted file mode 100644 index 0ad0e500..00000000 Binary files a/outputs/png/broadcast_round.png and /dev/null differ diff --git a/outputs/png/broadcast_sharp.png b/outputs/png/broadcast_sharp.png deleted file mode 100644 index 0ad0e500..00000000 Binary files a/outputs/png/broadcast_sharp.png and /dev/null differ diff --git a/outputs/png/build_round.png b/outputs/png/build_round.png deleted file mode 100644 index 3cbe0d55..00000000 Binary files a/outputs/png/build_round.png and /dev/null differ diff --git a/outputs/png/build_sharp.png b/outputs/png/build_sharp.png deleted file mode 100644 index 1b343676..00000000 Binary files a/outputs/png/build_sharp.png and /dev/null differ diff --git a/outputs/png/building_round.png b/outputs/png/building_round.png deleted file mode 100644 index 5b2e53a6..00000000 Binary files a/outputs/png/building_round.png and /dev/null differ diff --git a/outputs/png/building_sharp.png b/outputs/png/building_sharp.png deleted file mode 100644 index 5b2e53a6..00000000 Binary files a/outputs/png/building_sharp.png and /dev/null differ diff --git a/outputs/png/bullet_list_round.png b/outputs/png/bullet_list_round.png deleted file mode 100644 index 3083072c..00000000 Binary files a/outputs/png/bullet_list_round.png and /dev/null differ diff --git a/outputs/png/bullet_list_sharp.png b/outputs/png/bullet_list_sharp.png deleted file mode 100644 index a7b03863..00000000 Binary files a/outputs/png/bullet_list_sharp.png and /dev/null differ diff --git a/outputs/png/bus_round.png b/outputs/png/bus_round.png deleted file mode 100644 index 1330b684..00000000 Binary files a/outputs/png/bus_round.png and /dev/null differ diff --git a/outputs/png/bus_sharp.png b/outputs/png/bus_sharp.png deleted file mode 100644 index 7789590f..00000000 Binary files a/outputs/png/bus_sharp.png and /dev/null differ diff --git a/outputs/png/cached_round.png b/outputs/png/cached_round.png deleted file mode 100644 index 264d8547..00000000 Binary files a/outputs/png/cached_round.png and /dev/null differ diff --git a/outputs/png/cached_sharp.png b/outputs/png/cached_sharp.png deleted file mode 100644 index 47fa2e59..00000000 Binary files a/outputs/png/cached_sharp.png and /dev/null differ diff --git a/outputs/png/cafe_round.png b/outputs/png/cafe_round.png deleted file mode 100644 index 0635cd85..00000000 Binary files a/outputs/png/cafe_round.png and /dev/null differ diff --git a/outputs/png/cafe_sharp.png b/outputs/png/cafe_sharp.png deleted file mode 100644 index c3dbd547..00000000 Binary files a/outputs/png/cafe_sharp.png and /dev/null differ diff --git a/outputs/png/calculator_round.png b/outputs/png/calculator_round.png deleted file mode 100644 index 17dc0132..00000000 Binary files a/outputs/png/calculator_round.png and /dev/null differ diff --git a/outputs/png/calculator_sharp.png b/outputs/png/calculator_sharp.png deleted file mode 100644 index 17dc0132..00000000 Binary files a/outputs/png/calculator_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_3_day_round.png b/outputs/png/calendar_3_day_round.png deleted file mode 100644 index b1f997ac..00000000 Binary files a/outputs/png/calendar_3_day_round.png and /dev/null differ diff --git a/outputs/png/calendar_3_day_sharp.png b/outputs/png/calendar_3_day_sharp.png deleted file mode 100644 index 90ff3a7f..00000000 Binary files a/outputs/png/calendar_3_day_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_alt_1_round.png b/outputs/png/calendar_alt_1_round.png deleted file mode 100644 index 15c99fc8..00000000 Binary files a/outputs/png/calendar_alt_1_round.png and /dev/null differ diff --git a/outputs/png/calendar_alt_1_sharp.png b/outputs/png/calendar_alt_1_sharp.png deleted file mode 100644 index 51ced1b0..00000000 Binary files a/outputs/png/calendar_alt_1_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_alt_2_round.png b/outputs/png/calendar_alt_2_round.png deleted file mode 100644 index b198dd90..00000000 Binary files a/outputs/png/calendar_alt_2_round.png and /dev/null differ diff --git a/outputs/png/calendar_alt_2_sharp.png b/outputs/png/calendar_alt_2_sharp.png deleted file mode 100644 index 11a9c26f..00000000 Binary files a/outputs/png/calendar_alt_2_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_available_round.png b/outputs/png/calendar_available_round.png deleted file mode 100644 index d838d313..00000000 Binary files a/outputs/png/calendar_available_round.png and /dev/null differ diff --git a/outputs/png/calendar_available_sharp.png b/outputs/png/calendar_available_sharp.png deleted file mode 100644 index d838d313..00000000 Binary files a/outputs/png/calendar_available_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_day_round.png b/outputs/png/calendar_day_round.png deleted file mode 100644 index 535244b6..00000000 Binary files a/outputs/png/calendar_day_round.png and /dev/null differ diff --git a/outputs/png/calendar_day_sharp.png b/outputs/png/calendar_day_sharp.png deleted file mode 100644 index 3cbed4f1..00000000 Binary files a/outputs/png/calendar_day_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_edit_round.png b/outputs/png/calendar_edit_round.png deleted file mode 100644 index 20e8b92b..00000000 Binary files a/outputs/png/calendar_edit_round.png and /dev/null differ diff --git a/outputs/png/calendar_edit_sharp.png b/outputs/png/calendar_edit_sharp.png deleted file mode 100644 index 20e8b92b..00000000 Binary files a/outputs/png/calendar_edit_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_gantt_round.png b/outputs/png/calendar_gantt_round.png deleted file mode 100644 index 43323160..00000000 Binary files a/outputs/png/calendar_gantt_round.png and /dev/null differ diff --git a/outputs/png/calendar_gantt_sharp.png b/outputs/png/calendar_gantt_sharp.png deleted file mode 100644 index 43323160..00000000 Binary files a/outputs/png/calendar_gantt_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_monthly_round.png b/outputs/png/calendar_monthly_round.png deleted file mode 100644 index a5d9ba48..00000000 Binary files a/outputs/png/calendar_monthly_round.png and /dev/null differ diff --git a/outputs/png/calendar_monthly_sharp.png b/outputs/png/calendar_monthly_sharp.png deleted file mode 100644 index fa93fa99..00000000 Binary files a/outputs/png/calendar_monthly_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_next_round.png b/outputs/png/calendar_next_round.png deleted file mode 100644 index 41648ade..00000000 Binary files a/outputs/png/calendar_next_round.png and /dev/null differ diff --git a/outputs/png/calendar_next_sharp.png b/outputs/png/calendar_next_sharp.png deleted file mode 100644 index 41648ade..00000000 Binary files a/outputs/png/calendar_next_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_range_round.png b/outputs/png/calendar_range_round.png deleted file mode 100644 index 9eedeafa..00000000 Binary files a/outputs/png/calendar_range_round.png and /dev/null differ diff --git a/outputs/png/calendar_range_sharp.png b/outputs/png/calendar_range_sharp.png deleted file mode 100644 index a4bc9777..00000000 Binary files a/outputs/png/calendar_range_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_rollover_round.png b/outputs/png/calendar_rollover_round.png deleted file mode 100644 index 3682a64f..00000000 Binary files a/outputs/png/calendar_rollover_round.png and /dev/null differ diff --git a/outputs/png/calendar_rollover_sharp.png b/outputs/png/calendar_rollover_sharp.png deleted file mode 100644 index 3682a64f..00000000 Binary files a/outputs/png/calendar_rollover_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_round.png b/outputs/png/calendar_round.png deleted file mode 100644 index 063c8391..00000000 Binary files a/outputs/png/calendar_round.png and /dev/null differ diff --git a/outputs/png/calendar_sharp.png b/outputs/png/calendar_sharp.png deleted file mode 100644 index 135c073b..00000000 Binary files a/outputs/png/calendar_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_unavailable_round.png b/outputs/png/calendar_unavailable_round.png deleted file mode 100644 index 33a93386..00000000 Binary files a/outputs/png/calendar_unavailable_round.png and /dev/null differ diff --git a/outputs/png/calendar_unavailable_sharp.png b/outputs/png/calendar_unavailable_sharp.png deleted file mode 100644 index 33a93386..00000000 Binary files a/outputs/png/calendar_unavailable_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_weekly_round.png b/outputs/png/calendar_weekly_round.png deleted file mode 100644 index 91fbda04..00000000 Binary files a/outputs/png/calendar_weekly_round.png and /dev/null differ diff --git a/outputs/png/calendar_weekly_sharp.png b/outputs/png/calendar_weekly_sharp.png deleted file mode 100644 index 7d7b5612..00000000 Binary files a/outputs/png/calendar_weekly_sharp.png and /dev/null differ diff --git a/outputs/png/calendar_yearly_round.png b/outputs/png/calendar_yearly_round.png deleted file mode 100644 index e9454835..00000000 Binary files a/outputs/png/calendar_yearly_round.png and /dev/null differ diff --git a/outputs/png/calendar_yearly_sharp.png b/outputs/png/calendar_yearly_sharp.png deleted file mode 100644 index 37244940..00000000 Binary files a/outputs/png/calendar_yearly_sharp.png and /dev/null differ diff --git a/outputs/png/call_back_round.png b/outputs/png/call_back_round.png deleted file mode 100644 index 860a0f85..00000000 Binary files a/outputs/png/call_back_round.png and /dev/null differ diff --git a/outputs/png/call_back_sharp.png b/outputs/png/call_back_sharp.png deleted file mode 100644 index 4ca97b87..00000000 Binary files a/outputs/png/call_back_sharp.png and /dev/null differ diff --git a/outputs/png/camera_round.png b/outputs/png/camera_round.png deleted file mode 100644 index 08d61a21..00000000 Binary files a/outputs/png/camera_round.png and /dev/null differ diff --git a/outputs/png/camera_sharp.png b/outputs/png/camera_sharp.png deleted file mode 100644 index d0eaafe4..00000000 Binary files a/outputs/png/camera_sharp.png and /dev/null differ diff --git a/outputs/png/camera_shutter_round.png b/outputs/png/camera_shutter_round.png deleted file mode 100644 index b4962fb6..00000000 Binary files a/outputs/png/camera_shutter_round.png and /dev/null differ diff --git a/outputs/png/camera_shutter_sharp.png b/outputs/png/camera_shutter_sharp.png deleted file mode 100644 index eb953be8..00000000 Binary files a/outputs/png/camera_shutter_sharp.png and /dev/null differ diff --git a/outputs/png/camera_switch_image_round.png b/outputs/png/camera_switch_image_round.png deleted file mode 100644 index 4dd25077..00000000 Binary files a/outputs/png/camera_switch_image_round.png and /dev/null differ diff --git a/outputs/png/camera_switch_image_sharp.png b/outputs/png/camera_switch_image_sharp.png deleted file mode 100644 index 4dd25077..00000000 Binary files a/outputs/png/camera_switch_image_sharp.png and /dev/null differ diff --git a/outputs/png/camera_switch_round.png b/outputs/png/camera_switch_round.png deleted file mode 100644 index 4dd25077..00000000 Binary files a/outputs/png/camera_switch_round.png and /dev/null differ diff --git a/outputs/png/camera_switch_sharp.png b/outputs/png/camera_switch_sharp.png deleted file mode 100644 index 4dd25077..00000000 Binary files a/outputs/png/camera_switch_sharp.png and /dev/null differ diff --git a/outputs/png/cancel_outline_round.png b/outputs/png/cancel_outline_round.png deleted file mode 100644 index 358b6acb..00000000 Binary files a/outputs/png/cancel_outline_round.png and /dev/null differ diff --git a/outputs/png/cancel_outline_sharp.png b/outputs/png/cancel_outline_sharp.png deleted file mode 100644 index 903f7a88..00000000 Binary files a/outputs/png/cancel_outline_sharp.png and /dev/null differ diff --git a/outputs/png/cancel_round.png b/outputs/png/cancel_round.png deleted file mode 100644 index 9e1c8b01..00000000 Binary files a/outputs/png/cancel_round.png and /dev/null differ diff --git a/outputs/png/cancel_sharp.png b/outputs/png/cancel_sharp.png deleted file mode 100644 index 955062c7..00000000 Binary files a/outputs/png/cancel_sharp.png and /dev/null differ diff --git a/outputs/png/car_round.png b/outputs/png/car_round.png deleted file mode 100644 index 491dfa55..00000000 Binary files a/outputs/png/car_round.png and /dev/null differ diff --git a/outputs/png/car_sharp.png b/outputs/png/car_sharp.png deleted file mode 100644 index 53ef220a..00000000 Binary files a/outputs/png/car_sharp.png and /dev/null differ diff --git a/outputs/png/card_orientation_round.png b/outputs/png/card_orientation_round.png deleted file mode 100644 index 80be3b8f..00000000 Binary files a/outputs/png/card_orientation_round.png and /dev/null differ diff --git a/outputs/png/card_orientation_sharp.png b/outputs/png/card_orientation_sharp.png deleted file mode 100644 index 80be3b8f..00000000 Binary files a/outputs/png/card_orientation_sharp.png and /dev/null differ diff --git a/outputs/png/card_with_chip_round.png b/outputs/png/card_with_chip_round.png deleted file mode 100644 index 45d81d37..00000000 Binary files a/outputs/png/card_with_chip_round.png and /dev/null differ diff --git a/outputs/png/card_with_chip_sharp.png b/outputs/png/card_with_chip_sharp.png deleted file mode 100644 index 45d81d37..00000000 Binary files a/outputs/png/card_with_chip_sharp.png and /dev/null differ diff --git a/outputs/png/caret_down_round.png b/outputs/png/caret_down_round.png deleted file mode 100644 index 9acb82e0..00000000 Binary files a/outputs/png/caret_down_round.png and /dev/null differ diff --git a/outputs/png/caret_down_sharp.png b/outputs/png/caret_down_sharp.png deleted file mode 100644 index 28dd7351..00000000 Binary files a/outputs/png/caret_down_sharp.png and /dev/null differ diff --git a/outputs/png/caret_left_round.png b/outputs/png/caret_left_round.png deleted file mode 100644 index 329b73da..00000000 Binary files a/outputs/png/caret_left_round.png and /dev/null differ diff --git a/outputs/png/caret_left_sharp.png b/outputs/png/caret_left_sharp.png deleted file mode 100644 index a0c499af..00000000 Binary files a/outputs/png/caret_left_sharp.png and /dev/null differ diff --git a/outputs/png/caret_right_round.png b/outputs/png/caret_right_round.png deleted file mode 100644 index e6909bdf..00000000 Binary files a/outputs/png/caret_right_round.png and /dev/null differ diff --git a/outputs/png/caret_right_sharp.png b/outputs/png/caret_right_sharp.png deleted file mode 100644 index 85620a8e..00000000 Binary files a/outputs/png/caret_right_sharp.png and /dev/null differ diff --git a/outputs/png/caret_sort_round.png b/outputs/png/caret_sort_round.png deleted file mode 100644 index 7b1cb0ad..00000000 Binary files a/outputs/png/caret_sort_round.png and /dev/null differ diff --git a/outputs/png/caret_sort_sharp.png b/outputs/png/caret_sort_sharp.png deleted file mode 100644 index 018de899..00000000 Binary files a/outputs/png/caret_sort_sharp.png and /dev/null differ diff --git a/outputs/png/caret_up_round.png b/outputs/png/caret_up_round.png deleted file mode 100644 index d6468ede..00000000 Binary files a/outputs/png/caret_up_round.png and /dev/null differ diff --git a/outputs/png/caret_up_sharp.png b/outputs/png/caret_up_sharp.png deleted file mode 100644 index 2fb18f4e..00000000 Binary files a/outputs/png/caret_up_sharp.png and /dev/null differ diff --git a/outputs/png/cast_connected_round.png b/outputs/png/cast_connected_round.png deleted file mode 100644 index fd9a876e..00000000 Binary files a/outputs/png/cast_connected_round.png and /dev/null differ diff --git a/outputs/png/cast_connected_sharp.png b/outputs/png/cast_connected_sharp.png deleted file mode 100644 index 1f56085d..00000000 Binary files a/outputs/png/cast_connected_sharp.png and /dev/null differ diff --git a/outputs/png/cast_round.png b/outputs/png/cast_round.png deleted file mode 100644 index 369057b0..00000000 Binary files a/outputs/png/cast_round.png and /dev/null differ diff --git a/outputs/png/cast_sharp.png b/outputs/png/cast_sharp.png deleted file mode 100644 index f255a572..00000000 Binary files a/outputs/png/cast_sharp.png and /dev/null differ diff --git a/outputs/png/cellular_signal_round.png b/outputs/png/cellular_signal_round.png deleted file mode 100644 index 9316ecf2..00000000 Binary files a/outputs/png/cellular_signal_round.png and /dev/null differ diff --git a/outputs/png/cellular_signal_sharp.png b/outputs/png/cellular_signal_sharp.png deleted file mode 100644 index 78c11b00..00000000 Binary files a/outputs/png/cellular_signal_sharp.png and /dev/null differ diff --git a/outputs/png/certificate_round.png b/outputs/png/certificate_round.png deleted file mode 100644 index 4a01a0e0..00000000 Binary files a/outputs/png/certificate_round.png and /dev/null differ diff --git a/outputs/png/certificate_sharp.png b/outputs/png/certificate_sharp.png deleted file mode 100644 index 4a01a0e0..00000000 Binary files a/outputs/png/certificate_sharp.png and /dev/null differ diff --git a/outputs/png/certified_round.png b/outputs/png/certified_round.png deleted file mode 100644 index af1ea7ba..00000000 Binary files a/outputs/png/certified_round.png and /dev/null differ diff --git a/outputs/png/certified_sharp.png b/outputs/png/certified_sharp.png deleted file mode 100644 index af1ea7ba..00000000 Binary files a/outputs/png/certified_sharp.png and /dev/null differ diff --git a/outputs/png/chain_round.png b/outputs/png/chain_round.png deleted file mode 100644 index 503a56cd..00000000 Binary files a/outputs/png/chain_round.png and /dev/null differ diff --git a/outputs/png/chain_sharp.png b/outputs/png/chain_sharp.png deleted file mode 100644 index 9350f99c..00000000 Binary files a/outputs/png/chain_sharp.png and /dev/null differ diff --git a/outputs/png/chart_bar_round.png b/outputs/png/chart_bar_round.png deleted file mode 100644 index c8715c32..00000000 Binary files a/outputs/png/chart_bar_round.png and /dev/null differ diff --git a/outputs/png/chart_bar_sharp.png b/outputs/png/chart_bar_sharp.png deleted file mode 100644 index c8715c32..00000000 Binary files a/outputs/png/chart_bar_sharp.png and /dev/null differ diff --git a/outputs/png/chart_bubble_charts_round.png b/outputs/png/chart_bubble_charts_round.png deleted file mode 100644 index de2265cb..00000000 Binary files a/outputs/png/chart_bubble_charts_round.png and /dev/null differ diff --git a/outputs/png/chart_bubble_charts_sharp.png b/outputs/png/chart_bubble_charts_sharp.png deleted file mode 100644 index de2265cb..00000000 Binary files a/outputs/png/chart_bubble_charts_sharp.png and /dev/null differ diff --git a/outputs/png/chart_bubble_round.png b/outputs/png/chart_bubble_round.png deleted file mode 100644 index f4a83016..00000000 Binary files a/outputs/png/chart_bubble_round.png and /dev/null differ diff --git a/outputs/png/chart_bubble_sharp.png b/outputs/png/chart_bubble_sharp.png deleted file mode 100644 index f4a83016..00000000 Binary files a/outputs/png/chart_bubble_sharp.png and /dev/null differ diff --git a/outputs/png/chart_doughnut_round.png b/outputs/png/chart_doughnut_round.png deleted file mode 100644 index 911d0f38..00000000 Binary files a/outputs/png/chart_doughnut_round.png and /dev/null differ diff --git a/outputs/png/chart_doughnut_sharp.png b/outputs/png/chart_doughnut_sharp.png deleted file mode 100644 index 911d0f38..00000000 Binary files a/outputs/png/chart_doughnut_sharp.png and /dev/null differ diff --git a/outputs/png/chart_filled_enterprise_round.png b/outputs/png/chart_filled_enterprise_round.png deleted file mode 100644 index ddba6129..00000000 Binary files a/outputs/png/chart_filled_enterprise_round.png and /dev/null differ diff --git a/outputs/png/chart_filled_enterprise_sharp.png b/outputs/png/chart_filled_enterprise_sharp.png deleted file mode 100644 index 1e65bbb5..00000000 Binary files a/outputs/png/chart_filled_enterprise_sharp.png and /dev/null differ diff --git a/outputs/png/chart_filled_round.png b/outputs/png/chart_filled_round.png deleted file mode 100644 index 1e65bbb5..00000000 Binary files a/outputs/png/chart_filled_round.png and /dev/null differ diff --git a/outputs/png/chart_filled_sharp.png b/outputs/png/chart_filled_sharp.png deleted file mode 100644 index 1e65bbb5..00000000 Binary files a/outputs/png/chart_filled_sharp.png and /dev/null differ diff --git a/outputs/png/chart_gantt_round.png b/outputs/png/chart_gantt_round.png deleted file mode 100644 index 11d192e9..00000000 Binary files a/outputs/png/chart_gantt_round.png and /dev/null differ diff --git a/outputs/png/chart_gantt_sharp.png b/outputs/png/chart_gantt_sharp.png deleted file mode 100644 index 11d192e9..00000000 Binary files a/outputs/png/chart_gantt_sharp.png and /dev/null differ diff --git a/outputs/png/chart_line_predict_round.png b/outputs/png/chart_line_predict_round.png deleted file mode 100644 index c38b0c81..00000000 Binary files a/outputs/png/chart_line_predict_round.png and /dev/null differ diff --git a/outputs/png/chart_line_predict_sharp.png b/outputs/png/chart_line_predict_sharp.png deleted file mode 100644 index c38b0c81..00000000 Binary files a/outputs/png/chart_line_predict_sharp.png and /dev/null differ diff --git a/outputs/png/chart_line_round.png b/outputs/png/chart_line_round.png deleted file mode 100644 index 63249dd9..00000000 Binary files a/outputs/png/chart_line_round.png and /dev/null differ diff --git a/outputs/png/chart_line_sharp.png b/outputs/png/chart_line_sharp.png deleted file mode 100644 index 63249dd9..00000000 Binary files a/outputs/png/chart_line_sharp.png and /dev/null differ diff --git a/outputs/png/chart_line_stacked_round.png b/outputs/png/chart_line_stacked_round.png deleted file mode 100644 index 3756974c..00000000 Binary files a/outputs/png/chart_line_stacked_round.png and /dev/null differ diff --git a/outputs/png/chart_line_stacked_sharp.png b/outputs/png/chart_line_stacked_sharp.png deleted file mode 100644 index 3756974c..00000000 Binary files a/outputs/png/chart_line_stacked_sharp.png and /dev/null differ diff --git a/outputs/png/chart_outline_round.png b/outputs/png/chart_outline_round.png deleted file mode 100644 index 4947beb5..00000000 Binary files a/outputs/png/chart_outline_round.png and /dev/null differ diff --git a/outputs/png/chart_outline_sharp.png b/outputs/png/chart_outline_sharp.png deleted file mode 100644 index 4947beb5..00000000 Binary files a/outputs/png/chart_outline_sharp.png and /dev/null differ diff --git a/outputs/png/chart_pie_charts_round.png b/outputs/png/chart_pie_charts_round.png deleted file mode 100644 index 4d657c62..00000000 Binary files a/outputs/png/chart_pie_charts_round.png and /dev/null differ diff --git a/outputs/png/chart_pie_charts_sharp.png b/outputs/png/chart_pie_charts_sharp.png deleted file mode 100644 index 4d657c62..00000000 Binary files a/outputs/png/chart_pie_charts_sharp.png and /dev/null differ diff --git a/outputs/png/chart_pie_content_round.png b/outputs/png/chart_pie_content_round.png deleted file mode 100644 index 4d657c62..00000000 Binary files a/outputs/png/chart_pie_content_round.png and /dev/null differ diff --git a/outputs/png/chart_pie_content_sharp.png b/outputs/png/chart_pie_content_sharp.png deleted file mode 100644 index 4d657c62..00000000 Binary files a/outputs/png/chart_pie_content_sharp.png and /dev/null differ diff --git a/outputs/png/chart_pie_round.png b/outputs/png/chart_pie_round.png deleted file mode 100644 index c6d04839..00000000 Binary files a/outputs/png/chart_pie_round.png and /dev/null differ diff --git a/outputs/png/chart_pie_sharp.png b/outputs/png/chart_pie_sharp.png deleted file mode 100644 index c6d04839..00000000 Binary files a/outputs/png/chart_pie_sharp.png and /dev/null differ diff --git a/outputs/png/chart_scatter_plot_round.png b/outputs/png/chart_scatter_plot_round.png deleted file mode 100644 index b04aaaae..00000000 Binary files a/outputs/png/chart_scatter_plot_round.png and /dev/null differ diff --git a/outputs/png/chart_scatter_plot_sharp.png b/outputs/png/chart_scatter_plot_sharp.png deleted file mode 100644 index 1528910e..00000000 Binary files a/outputs/png/chart_scatter_plot_sharp.png and /dev/null differ diff --git a/outputs/png/chart_stacked_round.png b/outputs/png/chart_stacked_round.png deleted file mode 100644 index b0796892..00000000 Binary files a/outputs/png/chart_stacked_round.png and /dev/null differ diff --git a/outputs/png/chart_stacked_sharp.png b/outputs/png/chart_stacked_sharp.png deleted file mode 100644 index b0796892..00000000 Binary files a/outputs/png/chart_stacked_sharp.png and /dev/null differ diff --git a/outputs/png/chart_waterfall_round.png b/outputs/png/chart_waterfall_round.png deleted file mode 100644 index 5af52de3..00000000 Binary files a/outputs/png/chart_waterfall_round.png and /dev/null differ diff --git a/outputs/png/chart_waterfall_sharp.png b/outputs/png/chart_waterfall_sharp.png deleted file mode 100644 index 5af52de3..00000000 Binary files a/outputs/png/chart_waterfall_sharp.png and /dev/null differ diff --git a/outputs/png/chat_bot_round.png b/outputs/png/chat_bot_round.png deleted file mode 100644 index ccc298cc..00000000 Binary files a/outputs/png/chat_bot_round.png and /dev/null differ diff --git a/outputs/png/chat_bot_sharp.png b/outputs/png/chat_bot_sharp.png deleted file mode 100644 index ccc298cc..00000000 Binary files a/outputs/png/chat_bot_sharp.png and /dev/null differ diff --git a/outputs/png/chat_bubble_outline_round.png b/outputs/png/chat_bubble_outline_round.png deleted file mode 100644 index 1506e58d..00000000 Binary files a/outputs/png/chat_bubble_outline_round.png and /dev/null differ diff --git a/outputs/png/chat_bubble_outline_sharp.png b/outputs/png/chat_bubble_outline_sharp.png deleted file mode 100644 index be934dbd..00000000 Binary files a/outputs/png/chat_bubble_outline_sharp.png and /dev/null differ diff --git a/outputs/png/chat_bubble_round.png b/outputs/png/chat_bubble_round.png deleted file mode 100644 index e5181163..00000000 Binary files a/outputs/png/chat_bubble_round.png and /dev/null differ diff --git a/outputs/png/chat_bubble_sharp.png b/outputs/png/chat_bubble_sharp.png deleted file mode 100644 index bdaa2b52..00000000 Binary files a/outputs/png/chat_bubble_sharp.png and /dev/null differ diff --git a/outputs/png/chat_message_read_round.png b/outputs/png/chat_message_read_round.png deleted file mode 100644 index 71eeba74..00000000 Binary files a/outputs/png/chat_message_read_round.png and /dev/null differ diff --git a/outputs/png/chat_message_read_sharp.png b/outputs/png/chat_message_read_sharp.png deleted file mode 100644 index 71eeba74..00000000 Binary files a/outputs/png/chat_message_read_sharp.png and /dev/null differ diff --git a/outputs/png/chat_message_unread_round.png b/outputs/png/chat_message_unread_round.png deleted file mode 100644 index e2774f0d..00000000 Binary files a/outputs/png/chat_message_unread_round.png and /dev/null differ diff --git a/outputs/png/chat_message_unread_sharp.png b/outputs/png/chat_message_unread_sharp.png deleted file mode 100644 index e2774f0d..00000000 Binary files a/outputs/png/chat_message_unread_sharp.png and /dev/null differ diff --git a/outputs/png/chat_round.png b/outputs/png/chat_round.png deleted file mode 100644 index a33e5533..00000000 Binary files a/outputs/png/chat_round.png and /dev/null differ diff --git a/outputs/png/chat_search_round.png b/outputs/png/chat_search_round.png deleted file mode 100644 index 2d078dd4..00000000 Binary files a/outputs/png/chat_search_round.png and /dev/null differ diff --git a/outputs/png/chat_search_sharp.png b/outputs/png/chat_search_sharp.png deleted file mode 100644 index 2d078dd4..00000000 Binary files a/outputs/png/chat_search_sharp.png and /dev/null differ diff --git a/outputs/png/chat_sharp.png b/outputs/png/chat_sharp.png deleted file mode 100644 index a33e5533..00000000 Binary files a/outputs/png/chat_sharp.png and /dev/null differ diff --git a/outputs/png/check_box_empty_round.png b/outputs/png/check_box_empty_round.png deleted file mode 100644 index 2ddef419..00000000 Binary files a/outputs/png/check_box_empty_round.png and /dev/null differ diff --git a/outputs/png/check_box_empty_sharp.png b/outputs/png/check_box_empty_sharp.png deleted file mode 100644 index 995f07f6..00000000 Binary files a/outputs/png/check_box_empty_sharp.png and /dev/null differ diff --git a/outputs/png/check_box_round.png b/outputs/png/check_box_round.png deleted file mode 100644 index f5ad1b74..00000000 Binary files a/outputs/png/check_box_round.png and /dev/null differ diff --git a/outputs/png/check_box_sharp.png b/outputs/png/check_box_sharp.png deleted file mode 100644 index a1cd038e..00000000 Binary files a/outputs/png/check_box_sharp.png and /dev/null differ diff --git a/outputs/png/check_circle_outline_alt_round.png b/outputs/png/check_circle_outline_alt_round.png deleted file mode 100644 index e1fb45af..00000000 Binary files a/outputs/png/check_circle_outline_alt_round.png and /dev/null differ diff --git a/outputs/png/check_circle_outline_alt_sharp.png b/outputs/png/check_circle_outline_alt_sharp.png deleted file mode 100644 index 8d2e0be4..00000000 Binary files a/outputs/png/check_circle_outline_alt_sharp.png and /dev/null differ diff --git a/outputs/png/check_circle_outline_round.png b/outputs/png/check_circle_outline_round.png deleted file mode 100644 index ae720e8a..00000000 Binary files a/outputs/png/check_circle_outline_round.png and /dev/null differ diff --git a/outputs/png/check_circle_outline_sharp.png b/outputs/png/check_circle_outline_sharp.png deleted file mode 100644 index 46665c87..00000000 Binary files a/outputs/png/check_circle_outline_sharp.png and /dev/null differ diff --git a/outputs/png/check_circle_round.png b/outputs/png/check_circle_round.png deleted file mode 100644 index b4a7dea0..00000000 Binary files a/outputs/png/check_circle_round.png and /dev/null differ diff --git a/outputs/png/check_circle_sharp.png b/outputs/png/check_circle_sharp.png deleted file mode 100644 index a1351da1..00000000 Binary files a/outputs/png/check_circle_sharp.png and /dev/null differ diff --git a/outputs/png/check_mark_round.png b/outputs/png/check_mark_round.png deleted file mode 100644 index 3a73bc65..00000000 Binary files a/outputs/png/check_mark_round.png and /dev/null differ diff --git a/outputs/png/check_mark_sharp.png b/outputs/png/check_mark_sharp.png deleted file mode 100644 index 7b31d08d..00000000 Binary files a/outputs/png/check_mark_sharp.png and /dev/null differ diff --git a/outputs/png/checklist_round.png b/outputs/png/checklist_round.png deleted file mode 100644 index 2954e9de..00000000 Binary files a/outputs/png/checklist_round.png and /dev/null differ diff --git a/outputs/png/checklist_sharp.png b/outputs/png/checklist_sharp.png deleted file mode 100644 index 0ac26f0f..00000000 Binary files a/outputs/png/checklist_sharp.png and /dev/null differ diff --git a/outputs/png/chevron_left_round.png b/outputs/png/chevron_left_round.png deleted file mode 100644 index e244b516..00000000 Binary files a/outputs/png/chevron_left_round.png and /dev/null differ diff --git a/outputs/png/chevron_left_sharp.png b/outputs/png/chevron_left_sharp.png deleted file mode 100644 index b029d9bc..00000000 Binary files a/outputs/png/chevron_left_sharp.png and /dev/null differ diff --git a/outputs/png/chevron_right_round.png b/outputs/png/chevron_right_round.png deleted file mode 100644 index 7314cda5..00000000 Binary files a/outputs/png/chevron_right_round.png and /dev/null differ diff --git a/outputs/png/chevron_right_sharp.png b/outputs/png/chevron_right_sharp.png deleted file mode 100644 index 0dbe14f3..00000000 Binary files a/outputs/png/chevron_right_sharp.png and /dev/null differ diff --git a/outputs/png/choices_round.png b/outputs/png/choices_round.png deleted file mode 100644 index ddf81d3a..00000000 Binary files a/outputs/png/choices_round.png and /dev/null differ diff --git a/outputs/png/choices_sharp.png b/outputs/png/choices_sharp.png deleted file mode 100644 index 3716419b..00000000 Binary files a/outputs/png/choices_sharp.png and /dev/null differ diff --git a/outputs/png/clipboard_action_round.png b/outputs/png/clipboard_action_round.png deleted file mode 100644 index f47724b1..00000000 Binary files a/outputs/png/clipboard_action_round.png and /dev/null differ diff --git a/outputs/png/clipboard_action_sharp.png b/outputs/png/clipboard_action_sharp.png deleted file mode 100644 index d393b669..00000000 Binary files a/outputs/png/clipboard_action_sharp.png and /dev/null differ diff --git a/outputs/png/clipboard_round.png b/outputs/png/clipboard_round.png deleted file mode 100644 index d4e82e24..00000000 Binary files a/outputs/png/clipboard_round.png and /dev/null differ diff --git a/outputs/png/clipboard_sharp.png b/outputs/png/clipboard_sharp.png deleted file mode 100644 index d4e82e24..00000000 Binary files a/outputs/png/clipboard_sharp.png and /dev/null differ diff --git a/outputs/png/clock_available_round.png b/outputs/png/clock_available_round.png deleted file mode 100644 index 914e53ea..00000000 Binary files a/outputs/png/clock_available_round.png and /dev/null differ diff --git a/outputs/png/clock_available_sharp.png b/outputs/png/clock_available_sharp.png deleted file mode 100644 index 914e53ea..00000000 Binary files a/outputs/png/clock_available_sharp.png and /dev/null differ diff --git a/outputs/png/clock_bid_round.png b/outputs/png/clock_bid_round.png deleted file mode 100644 index 9f378594..00000000 Binary files a/outputs/png/clock_bid_round.png and /dev/null differ diff --git a/outputs/png/clock_bid_sharp.png b/outputs/png/clock_bid_sharp.png deleted file mode 100644 index 9f378594..00000000 Binary files a/outputs/png/clock_bid_sharp.png and /dev/null differ diff --git a/outputs/png/clock_edit_round.png b/outputs/png/clock_edit_round.png deleted file mode 100644 index eef14fc3..00000000 Binary files a/outputs/png/clock_edit_round.png and /dev/null differ diff --git a/outputs/png/clock_edit_sharp.png b/outputs/png/clock_edit_sharp.png deleted file mode 100644 index eef14fc3..00000000 Binary files a/outputs/png/clock_edit_sharp.png and /dev/null differ diff --git a/outputs/png/clock_flexible_round.png b/outputs/png/clock_flexible_round.png deleted file mode 100644 index c32d1a79..00000000 Binary files a/outputs/png/clock_flexible_round.png and /dev/null differ diff --git a/outputs/png/clock_flexible_sharp.png b/outputs/png/clock_flexible_sharp.png deleted file mode 100644 index c32d1a79..00000000 Binary files a/outputs/png/clock_flexible_sharp.png and /dev/null differ diff --git a/outputs/png/clock_in_progress_round.png b/outputs/png/clock_in_progress_round.png deleted file mode 100644 index e6b5395e..00000000 Binary files a/outputs/png/clock_in_progress_round.png and /dev/null differ diff --git a/outputs/png/clock_in_progress_sharp.png b/outputs/png/clock_in_progress_sharp.png deleted file mode 100644 index e6b5395e..00000000 Binary files a/outputs/png/clock_in_progress_sharp.png and /dev/null differ diff --git a/outputs/png/clock_info_round.png b/outputs/png/clock_info_round.png deleted file mode 100644 index fb90c5b9..00000000 Binary files a/outputs/png/clock_info_round.png and /dev/null differ diff --git a/outputs/png/clock_info_sharp.png b/outputs/png/clock_info_sharp.png deleted file mode 100644 index fb90c5b9..00000000 Binary files a/outputs/png/clock_info_sharp.png and /dev/null differ diff --git a/outputs/png/clock_missed_round.png b/outputs/png/clock_missed_round.png deleted file mode 100644 index 80362c0f..00000000 Binary files a/outputs/png/clock_missed_round.png and /dev/null differ diff --git a/outputs/png/clock_missed_sharp.png b/outputs/png/clock_missed_sharp.png deleted file mode 100644 index 80362c0f..00000000 Binary files a/outputs/png/clock_missed_sharp.png and /dev/null differ diff --git a/outputs/png/clock_on_round.png b/outputs/png/clock_on_round.png deleted file mode 100644 index 891cb129..00000000 Binary files a/outputs/png/clock_on_round.png and /dev/null differ diff --git a/outputs/png/clock_on_sharp.png b/outputs/png/clock_on_sharp.png deleted file mode 100644 index 891cb129..00000000 Binary files a/outputs/png/clock_on_sharp.png and /dev/null differ diff --git a/outputs/png/clock_outline_round.png b/outputs/png/clock_outline_round.png deleted file mode 100644 index a83c109e..00000000 Binary files a/outputs/png/clock_outline_round.png and /dev/null differ diff --git a/outputs/png/clock_outline_sharp.png b/outputs/png/clock_outline_sharp.png deleted file mode 100644 index c7546dca..00000000 Binary files a/outputs/png/clock_outline_sharp.png and /dev/null differ diff --git a/outputs/png/clock_rollover_round.png b/outputs/png/clock_rollover_round.png deleted file mode 100644 index 54cb84f3..00000000 Binary files a/outputs/png/clock_rollover_round.png and /dev/null differ diff --git a/outputs/png/clock_rollover_sharp.png b/outputs/png/clock_rollover_sharp.png deleted file mode 100644 index 54cb84f3..00000000 Binary files a/outputs/png/clock_rollover_sharp.png and /dev/null differ diff --git a/outputs/png/clock_round.png b/outputs/png/clock_round.png deleted file mode 100644 index 863f8982..00000000 Binary files a/outputs/png/clock_round.png and /dev/null differ diff --git a/outputs/png/clock_segment_round.png b/outputs/png/clock_segment_round.png deleted file mode 100644 index 89bd682f..00000000 Binary files a/outputs/png/clock_segment_round.png and /dev/null differ diff --git a/outputs/png/clock_segment_sharp.png b/outputs/png/clock_segment_sharp.png deleted file mode 100644 index 89bd682f..00000000 Binary files a/outputs/png/clock_segment_sharp.png and /dev/null differ diff --git a/outputs/png/clock_sharp.png b/outputs/png/clock_sharp.png deleted file mode 100644 index 002d942e..00000000 Binary files a/outputs/png/clock_sharp.png and /dev/null differ diff --git a/outputs/png/clock_start_round.png b/outputs/png/clock_start_round.png deleted file mode 100644 index 143ff919..00000000 Binary files a/outputs/png/clock_start_round.png and /dev/null differ diff --git a/outputs/png/clock_start_sharp.png b/outputs/png/clock_start_sharp.png deleted file mode 100644 index 143ff919..00000000 Binary files a/outputs/png/clock_start_sharp.png and /dev/null differ diff --git a/outputs/png/clock_stop_round.png b/outputs/png/clock_stop_round.png deleted file mode 100644 index 49691370..00000000 Binary files a/outputs/png/clock_stop_round.png and /dev/null differ diff --git a/outputs/png/clock_stop_sharp.png b/outputs/png/clock_stop_sharp.png deleted file mode 100644 index 49691370..00000000 Binary files a/outputs/png/clock_stop_sharp.png and /dev/null differ diff --git a/outputs/png/clock_switch_round.png b/outputs/png/clock_switch_round.png deleted file mode 100644 index 81c36c90..00000000 Binary files a/outputs/png/clock_switch_round.png and /dev/null differ diff --git a/outputs/png/clock_switch_sharp.png b/outputs/png/clock_switch_sharp.png deleted file mode 100644 index 81c36c90..00000000 Binary files a/outputs/png/clock_switch_sharp.png and /dev/null differ diff --git a/outputs/png/clock_timer_round.png b/outputs/png/clock_timer_round.png deleted file mode 100644 index 1fef1fe9..00000000 Binary files a/outputs/png/clock_timer_round.png and /dev/null differ diff --git a/outputs/png/clock_timer_sharp.png b/outputs/png/clock_timer_sharp.png deleted file mode 100644 index 1fef1fe9..00000000 Binary files a/outputs/png/clock_timer_sharp.png and /dev/null differ diff --git a/outputs/png/clock_upcoming_round.png b/outputs/png/clock_upcoming_round.png deleted file mode 100644 index 2c5cdf5b..00000000 Binary files a/outputs/png/clock_upcoming_round.png and /dev/null differ diff --git a/outputs/png/clock_upcoming_sharp.png b/outputs/png/clock_upcoming_sharp.png deleted file mode 100644 index 2c5cdf5b..00000000 Binary files a/outputs/png/clock_upcoming_sharp.png and /dev/null differ diff --git a/outputs/png/close_round.png b/outputs/png/close_round.png deleted file mode 100644 index cbee84f9..00000000 Binary files a/outputs/png/close_round.png and /dev/null differ diff --git a/outputs/png/close_sharp.png b/outputs/png/close_sharp.png deleted file mode 100644 index ad5e0eac..00000000 Binary files a/outputs/png/close_sharp.png and /dev/null differ diff --git a/outputs/png/closed_caption_round.png b/outputs/png/closed_caption_round.png deleted file mode 100644 index 4090ee67..00000000 Binary files a/outputs/png/closed_caption_round.png and /dev/null differ diff --git a/outputs/png/closed_caption_sharp.png b/outputs/png/closed_caption_sharp.png deleted file mode 100644 index e073505d..00000000 Binary files a/outputs/png/closed_caption_sharp.png and /dev/null differ diff --git a/outputs/png/cloud_done_round.png b/outputs/png/cloud_done_round.png deleted file mode 100644 index d43f9f11..00000000 Binary files a/outputs/png/cloud_done_round.png and /dev/null differ diff --git a/outputs/png/cloud_done_sharp.png b/outputs/png/cloud_done_sharp.png deleted file mode 100644 index 30e8da0c..00000000 Binary files a/outputs/png/cloud_done_sharp.png and /dev/null differ diff --git a/outputs/png/cloud_download_round.png b/outputs/png/cloud_download_round.png deleted file mode 100644 index 7487a3ad..00000000 Binary files a/outputs/png/cloud_download_round.png and /dev/null differ diff --git a/outputs/png/cloud_download_sharp.png b/outputs/png/cloud_download_sharp.png deleted file mode 100644 index 4d4e967e..00000000 Binary files a/outputs/png/cloud_download_sharp.png and /dev/null differ diff --git a/outputs/png/cloud_off_round.png b/outputs/png/cloud_off_round.png deleted file mode 100644 index d6690df1..00000000 Binary files a/outputs/png/cloud_off_round.png and /dev/null differ diff --git a/outputs/png/cloud_off_sharp.png b/outputs/png/cloud_off_sharp.png deleted file mode 100644 index 976f990c..00000000 Binary files a/outputs/png/cloud_off_sharp.png and /dev/null differ diff --git a/outputs/png/cloud_outline_round.png b/outputs/png/cloud_outline_round.png deleted file mode 100644 index cc1a65ee..00000000 Binary files a/outputs/png/cloud_outline_round.png and /dev/null differ diff --git a/outputs/png/cloud_outline_sharp.png b/outputs/png/cloud_outline_sharp.png deleted file mode 100644 index cc1a65ee..00000000 Binary files a/outputs/png/cloud_outline_sharp.png and /dev/null differ diff --git a/outputs/png/cloud_round.png b/outputs/png/cloud_round.png deleted file mode 100644 index ff3710dd..00000000 Binary files a/outputs/png/cloud_round.png and /dev/null differ diff --git a/outputs/png/cloud_sharp.png b/outputs/png/cloud_sharp.png deleted file mode 100644 index ff3710dd..00000000 Binary files a/outputs/png/cloud_sharp.png and /dev/null differ diff --git a/outputs/png/cloud_upload_round.png b/outputs/png/cloud_upload_round.png deleted file mode 100644 index 3c51f560..00000000 Binary files a/outputs/png/cloud_upload_round.png and /dev/null differ diff --git a/outputs/png/cloud_upload_sharp.png b/outputs/png/cloud_upload_sharp.png deleted file mode 100644 index 8a31378f..00000000 Binary files a/outputs/png/cloud_upload_sharp.png and /dev/null differ diff --git a/outputs/png/color_fill_round.png b/outputs/png/color_fill_round.png deleted file mode 100644 index 84205620..00000000 Binary files a/outputs/png/color_fill_round.png and /dev/null differ diff --git a/outputs/png/color_fill_sharp.png b/outputs/png/color_fill_sharp.png deleted file mode 100644 index 11875be1..00000000 Binary files a/outputs/png/color_fill_sharp.png and /dev/null differ diff --git a/outputs/png/columns_round.png b/outputs/png/columns_round.png deleted file mode 100644 index 4552a557..00000000 Binary files a/outputs/png/columns_round.png and /dev/null differ diff --git a/outputs/png/columns_sharp.png b/outputs/png/columns_sharp.png deleted file mode 100644 index 35b11b1a..00000000 Binary files a/outputs/png/columns_sharp.png and /dev/null differ diff --git a/outputs/png/contactless_pay_round.png b/outputs/png/contactless_pay_round.png deleted file mode 100644 index ed3c7ce2..00000000 Binary files a/outputs/png/contactless_pay_round.png and /dev/null differ diff --git a/outputs/png/contactless_pay_sharp.png b/outputs/png/contactless_pay_sharp.png deleted file mode 100644 index ed3c7ce2..00000000 Binary files a/outputs/png/contactless_pay_sharp.png and /dev/null differ diff --git a/outputs/png/content_round.png b/outputs/png/content_round.png deleted file mode 100644 index 0285b11e..00000000 Binary files a/outputs/png/content_round.png and /dev/null differ diff --git a/outputs/png/content_sharp.png b/outputs/png/content_sharp.png deleted file mode 100644 index f0028148..00000000 Binary files a/outputs/png/content_sharp.png and /dev/null differ diff --git a/outputs/png/contrast_image_round.png b/outputs/png/contrast_image_round.png deleted file mode 100644 index b37870d7..00000000 Binary files a/outputs/png/contrast_image_round.png and /dev/null differ diff --git a/outputs/png/contrast_image_sharp.png b/outputs/png/contrast_image_sharp.png deleted file mode 100644 index b37870d7..00000000 Binary files a/outputs/png/contrast_image_sharp.png and /dev/null differ diff --git a/outputs/png/contrast_round.png b/outputs/png/contrast_round.png deleted file mode 100644 index b37870d7..00000000 Binary files a/outputs/png/contrast_round.png and /dev/null differ diff --git a/outputs/png/contrast_sharp.png b/outputs/png/contrast_sharp.png deleted file mode 100644 index b37870d7..00000000 Binary files a/outputs/png/contrast_sharp.png and /dev/null differ diff --git a/outputs/png/conversation_round.png b/outputs/png/conversation_round.png deleted file mode 100644 index b63558a8..00000000 Binary files a/outputs/png/conversation_round.png and /dev/null differ diff --git a/outputs/png/conversation_sharp.png b/outputs/png/conversation_sharp.png deleted file mode 100644 index ef694417..00000000 Binary files a/outputs/png/conversation_sharp.png and /dev/null differ diff --git a/outputs/png/copy_file_round.png b/outputs/png/copy_file_round.png deleted file mode 100644 index 4db95cc9..00000000 Binary files a/outputs/png/copy_file_round.png and /dev/null differ diff --git a/outputs/png/copy_file_sharp.png b/outputs/png/copy_file_sharp.png deleted file mode 100644 index 18fd0203..00000000 Binary files a/outputs/png/copy_file_sharp.png and /dev/null differ diff --git a/outputs/png/create_new_folder_round.png b/outputs/png/create_new_folder_round.png deleted file mode 100644 index 968e1592..00000000 Binary files a/outputs/png/create_new_folder_round.png and /dev/null differ diff --git a/outputs/png/create_new_folder_sharp.png b/outputs/png/create_new_folder_sharp.png deleted file mode 100644 index 784d2136..00000000 Binary files a/outputs/png/create_new_folder_sharp.png and /dev/null differ diff --git a/outputs/png/credit_card_round.png b/outputs/png/credit_card_round.png deleted file mode 100644 index 6e449a97..00000000 Binary files a/outputs/png/credit_card_round.png and /dev/null differ diff --git a/outputs/png/credit_card_sharp.png b/outputs/png/credit_card_sharp.png deleted file mode 100644 index 31972e8b..00000000 Binary files a/outputs/png/credit_card_sharp.png and /dev/null differ diff --git a/outputs/png/credit_card_swipe_round.png b/outputs/png/credit_card_swipe_round.png deleted file mode 100644 index cfa1cfa6..00000000 Binary files a/outputs/png/credit_card_swipe_round.png and /dev/null differ diff --git a/outputs/png/credit_card_swipe_sharp.png b/outputs/png/credit_card_swipe_sharp.png deleted file mode 100644 index cfa1cfa6..00000000 Binary files a/outputs/png/credit_card_swipe_sharp.png and /dev/null differ diff --git a/outputs/png/crop_round.png b/outputs/png/crop_round.png deleted file mode 100644 index 410c3629..00000000 Binary files a/outputs/png/crop_round.png and /dev/null differ diff --git a/outputs/png/crop_sharp.png b/outputs/png/crop_sharp.png deleted file mode 100644 index eae80554..00000000 Binary files a/outputs/png/crop_sharp.png and /dev/null differ diff --git a/outputs/png/dark_mode_round.png b/outputs/png/dark_mode_round.png deleted file mode 100644 index 4520ea2e..00000000 Binary files a/outputs/png/dark_mode_round.png and /dev/null differ diff --git a/outputs/png/dark_mode_sharp.png b/outputs/png/dark_mode_sharp.png deleted file mode 100644 index d577d2da..00000000 Binary files a/outputs/png/dark_mode_sharp.png and /dev/null differ diff --git a/outputs/png/dashboard_round.png b/outputs/png/dashboard_round.png deleted file mode 100644 index 7c8aede0..00000000 Binary files a/outputs/png/dashboard_round.png and /dev/null differ diff --git a/outputs/png/dashboard_sharp.png b/outputs/png/dashboard_sharp.png deleted file mode 100644 index 6a618a0d..00000000 Binary files a/outputs/png/dashboard_sharp.png and /dev/null differ diff --git a/outputs/png/delete_forever_round.png b/outputs/png/delete_forever_round.png deleted file mode 100644 index e4caeeb7..00000000 Binary files a/outputs/png/delete_forever_round.png and /dev/null differ diff --git a/outputs/png/delete_forever_sharp.png b/outputs/png/delete_forever_sharp.png deleted file mode 100644 index 0e6b118b..00000000 Binary files a/outputs/png/delete_forever_sharp.png and /dev/null differ diff --git a/outputs/png/delete_outline_round.png b/outputs/png/delete_outline_round.png deleted file mode 100644 index 3c9ed4b9..00000000 Binary files a/outputs/png/delete_outline_round.png and /dev/null differ diff --git a/outputs/png/delete_outline_sharp.png b/outputs/png/delete_outline_sharp.png deleted file mode 100644 index 711d2f7e..00000000 Binary files a/outputs/png/delete_outline_sharp.png and /dev/null differ diff --git a/outputs/png/delete_round.png b/outputs/png/delete_round.png deleted file mode 100644 index c9e311c4..00000000 Binary files a/outputs/png/delete_round.png and /dev/null differ diff --git a/outputs/png/delete_sharp.png b/outputs/png/delete_sharp.png deleted file mode 100644 index f8271845..00000000 Binary files a/outputs/png/delete_sharp.png and /dev/null differ diff --git a/outputs/png/desktop_round.png b/outputs/png/desktop_round.png deleted file mode 100644 index 507afbbd..00000000 Binary files a/outputs/png/desktop_round.png and /dev/null differ diff --git a/outputs/png/desktop_sharp.png b/outputs/png/desktop_sharp.png deleted file mode 100644 index 0e2770d9..00000000 Binary files a/outputs/png/desktop_sharp.png and /dev/null differ diff --git a/outputs/png/device_settings_round.png b/outputs/png/device_settings_round.png deleted file mode 100644 index fb55a802..00000000 Binary files a/outputs/png/device_settings_round.png and /dev/null differ diff --git a/outputs/png/device_settings_sharp.png b/outputs/png/device_settings_sharp.png deleted file mode 100644 index 6da403b6..00000000 Binary files a/outputs/png/device_settings_sharp.png and /dev/null differ diff --git a/outputs/png/devices_ecosystem_round.png b/outputs/png/devices_ecosystem_round.png deleted file mode 100644 index ef7e34e2..00000000 Binary files a/outputs/png/devices_ecosystem_round.png and /dev/null differ diff --git a/outputs/png/devices_ecosystem_sharp.png b/outputs/png/devices_ecosystem_sharp.png deleted file mode 100644 index 4584a370..00000000 Binary files a/outputs/png/devices_ecosystem_sharp.png and /dev/null differ diff --git a/outputs/png/devices_round.png b/outputs/png/devices_round.png deleted file mode 100644 index 4f80a930..00000000 Binary files a/outputs/png/devices_round.png and /dev/null differ diff --git a/outputs/png/devices_sharp.png b/outputs/png/devices_sharp.png deleted file mode 100644 index 58aab0a2..00000000 Binary files a/outputs/png/devices_sharp.png and /dev/null differ diff --git a/outputs/png/dialpad_round.png b/outputs/png/dialpad_round.png deleted file mode 100644 index 86f1ad99..00000000 Binary files a/outputs/png/dialpad_round.png and /dev/null differ diff --git a/outputs/png/dialpad_sharp.png b/outputs/png/dialpad_sharp.png deleted file mode 100644 index 86f1ad99..00000000 Binary files a/outputs/png/dialpad_sharp.png and /dev/null differ diff --git a/outputs/png/dislike_round.png b/outputs/png/dislike_round.png deleted file mode 100644 index 6f43590f..00000000 Binary files a/outputs/png/dislike_round.png and /dev/null differ diff --git a/outputs/png/dislike_sharp.png b/outputs/png/dislike_sharp.png deleted file mode 100644 index 86c5c530..00000000 Binary files a/outputs/png/dislike_sharp.png and /dev/null differ diff --git a/outputs/png/distribute_horizontal_round.png b/outputs/png/distribute_horizontal_round.png deleted file mode 100644 index 5565fee6..00000000 Binary files a/outputs/png/distribute_horizontal_round.png and /dev/null differ diff --git a/outputs/png/distribute_horizontal_sharp.png b/outputs/png/distribute_horizontal_sharp.png deleted file mode 100644 index 348845ae..00000000 Binary files a/outputs/png/distribute_horizontal_sharp.png and /dev/null differ diff --git a/outputs/png/distribute_vertical_round.png b/outputs/png/distribute_vertical_round.png deleted file mode 100644 index 96f7e08e..00000000 Binary files a/outputs/png/distribute_vertical_round.png and /dev/null differ diff --git a/outputs/png/distribute_vertical_sharp.png b/outputs/png/distribute_vertical_sharp.png deleted file mode 100644 index b60402e9..00000000 Binary files a/outputs/png/distribute_vertical_sharp.png and /dev/null differ diff --git a/outputs/png/doc_attach_round.png b/outputs/png/doc_attach_round.png deleted file mode 100644 index 2359b1d8..00000000 Binary files a/outputs/png/doc_attach_round.png and /dev/null differ diff --git a/outputs/png/doc_attach_sharp.png b/outputs/png/doc_attach_sharp.png deleted file mode 100644 index 30c12ed9..00000000 Binary files a/outputs/png/doc_attach_sharp.png and /dev/null differ diff --git a/outputs/png/document_round.png b/outputs/png/document_round.png deleted file mode 100644 index d3545cfb..00000000 Binary files a/outputs/png/document_round.png and /dev/null differ diff --git a/outputs/png/document_sharp.png b/outputs/png/document_sharp.png deleted file mode 100644 index f9ce14cf..00000000 Binary files a/outputs/png/document_sharp.png and /dev/null differ diff --git a/outputs/png/dollar_round.png b/outputs/png/dollar_round.png deleted file mode 100644 index a64b440c..00000000 Binary files a/outputs/png/dollar_round.png and /dev/null differ diff --git a/outputs/png/dollar_sharp.png b/outputs/png/dollar_sharp.png deleted file mode 100644 index 942367a1..00000000 Binary files a/outputs/png/dollar_sharp.png and /dev/null differ diff --git a/outputs/png/download_round.png b/outputs/png/download_round.png deleted file mode 100644 index 50a1ac7f..00000000 Binary files a/outputs/png/download_round.png and /dev/null differ diff --git a/outputs/png/download_sharp.png b/outputs/png/download_sharp.png deleted file mode 100644 index 43e62f93..00000000 Binary files a/outputs/png/download_sharp.png and /dev/null differ diff --git a/outputs/png/downloading_round.png b/outputs/png/downloading_round.png deleted file mode 100644 index e08a87ed..00000000 Binary files a/outputs/png/downloading_round.png and /dev/null differ diff --git a/outputs/png/downloading_sharp.png b/outputs/png/downloading_sharp.png deleted file mode 100644 index eedf0d58..00000000 Binary files a/outputs/png/downloading_sharp.png and /dev/null differ diff --git a/outputs/png/drop_down_circle_round.png b/outputs/png/drop_down_circle_round.png deleted file mode 100644 index 604e01d3..00000000 Binary files a/outputs/png/drop_down_circle_round.png and /dev/null differ diff --git a/outputs/png/drop_down_circle_sharp.png b/outputs/png/drop_down_circle_sharp.png deleted file mode 100644 index 563f77b0..00000000 Binary files a/outputs/png/drop_down_circle_sharp.png and /dev/null differ diff --git a/outputs/png/eas_round.png b/outputs/png/eas_round.png deleted file mode 100644 index bea6723a..00000000 Binary files a/outputs/png/eas_round.png and /dev/null differ diff --git a/outputs/png/eas_sharp.png b/outputs/png/eas_sharp.png deleted file mode 100644 index 2af39db5..00000000 Binary files a/outputs/png/eas_sharp.png and /dev/null differ diff --git a/outputs/png/edit_border_round.png b/outputs/png/edit_border_round.png deleted file mode 100644 index 38527888..00000000 Binary files a/outputs/png/edit_border_round.png and /dev/null differ diff --git a/outputs/png/edit_border_sharp.png b/outputs/png/edit_border_sharp.png deleted file mode 100644 index 515c6647..00000000 Binary files a/outputs/png/edit_border_sharp.png and /dev/null differ diff --git a/outputs/png/edit_round.png b/outputs/png/edit_round.png deleted file mode 100644 index a78ea4a1..00000000 Binary files a/outputs/png/edit_round.png and /dev/null differ diff --git a/outputs/png/edit_sharp.png b/outputs/png/edit_sharp.png deleted file mode 100644 index 6458a73e..00000000 Binary files a/outputs/png/edit_sharp.png and /dev/null differ diff --git a/outputs/png/email_alt_round.png b/outputs/png/email_alt_round.png deleted file mode 100644 index e91051d3..00000000 Binary files a/outputs/png/email_alt_round.png and /dev/null differ diff --git a/outputs/png/email_alt_sharp.png b/outputs/png/email_alt_sharp.png deleted file mode 100644 index 37500af4..00000000 Binary files a/outputs/png/email_alt_sharp.png and /dev/null differ diff --git a/outputs/png/email_outline_round.png b/outputs/png/email_outline_round.png deleted file mode 100644 index 6a6c0064..00000000 Binary files a/outputs/png/email_outline_round.png and /dev/null differ diff --git a/outputs/png/email_outline_sharp.png b/outputs/png/email_outline_sharp.png deleted file mode 100644 index b7242787..00000000 Binary files a/outputs/png/email_outline_sharp.png and /dev/null differ diff --git a/outputs/png/email_reply_all_round.png b/outputs/png/email_reply_all_round.png deleted file mode 100644 index 6e33f1a8..00000000 Binary files a/outputs/png/email_reply_all_round.png and /dev/null differ diff --git a/outputs/png/email_reply_all_sharp.png b/outputs/png/email_reply_all_sharp.png deleted file mode 100644 index 6e33f1a8..00000000 Binary files a/outputs/png/email_reply_all_sharp.png and /dev/null differ diff --git a/outputs/png/email_round.png b/outputs/png/email_round.png deleted file mode 100644 index 24885167..00000000 Binary files a/outputs/png/email_round.png and /dev/null differ diff --git a/outputs/png/email_sharp.png b/outputs/png/email_sharp.png deleted file mode 100644 index bcbfdd82..00000000 Binary files a/outputs/png/email_sharp.png and /dev/null differ diff --git a/outputs/png/end_call_round.png b/outputs/png/end_call_round.png deleted file mode 100644 index c48a3a98..00000000 Binary files a/outputs/png/end_call_round.png and /dev/null differ diff --git a/outputs/png/end_call_sharp.png b/outputs/png/end_call_sharp.png deleted file mode 100644 index 3870c865..00000000 Binary files a/outputs/png/end_call_sharp.png and /dev/null differ diff --git a/outputs/png/enterprise_diagnostics_round.png b/outputs/png/enterprise_diagnostics_round.png deleted file mode 100644 index a7c665e0..00000000 Binary files a/outputs/png/enterprise_diagnostics_round.png and /dev/null differ diff --git a/outputs/png/enterprise_diagnostics_sharp.png b/outputs/png/enterprise_diagnostics_sharp.png deleted file mode 100644 index a7c665e0..00000000 Binary files a/outputs/png/enterprise_diagnostics_sharp.png and /dev/null differ diff --git a/outputs/png/environmental_round.png b/outputs/png/environmental_round.png deleted file mode 100644 index 4438d13f..00000000 Binary files a/outputs/png/environmental_round.png and /dev/null differ diff --git a/outputs/png/environmental_sharp.png b/outputs/png/environmental_sharp.png deleted file mode 100644 index 4438d13f..00000000 Binary files a/outputs/png/environmental_sharp.png and /dev/null differ diff --git a/outputs/png/error_outline_round.png b/outputs/png/error_outline_round.png deleted file mode 100644 index e788e0d8..00000000 Binary files a/outputs/png/error_outline_round.png and /dev/null differ diff --git a/outputs/png/error_outline_sharp.png b/outputs/png/error_outline_sharp.png deleted file mode 100644 index 2fa5ffa5..00000000 Binary files a/outputs/png/error_outline_sharp.png and /dev/null differ diff --git a/outputs/png/error_round.png b/outputs/png/error_round.png deleted file mode 100644 index 2c715d3f..00000000 Binary files a/outputs/png/error_round.png and /dev/null differ diff --git a/outputs/png/error_sharp.png b/outputs/png/error_sharp.png deleted file mode 100644 index f1010156..00000000 Binary files a/outputs/png/error_sharp.png and /dev/null differ diff --git a/outputs/png/ethernet_round.png b/outputs/png/ethernet_round.png deleted file mode 100644 index ff8a854e..00000000 Binary files a/outputs/png/ethernet_round.png and /dev/null differ diff --git a/outputs/png/ethernet_sharp.png b/outputs/png/ethernet_sharp.png deleted file mode 100644 index 379be00f..00000000 Binary files a/outputs/png/ethernet_sharp.png and /dev/null differ diff --git a/outputs/png/exit_round.png b/outputs/png/exit_round.png deleted file mode 100644 index a96d5507..00000000 Binary files a/outputs/png/exit_round.png and /dev/null differ diff --git a/outputs/png/exit_sharp.png b/outputs/png/exit_sharp.png deleted file mode 100644 index a96d5507..00000000 Binary files a/outputs/png/exit_sharp.png and /dev/null differ diff --git a/outputs/png/expand_less_round.png b/outputs/png/expand_less_round.png deleted file mode 100644 index 407e96fe..00000000 Binary files a/outputs/png/expand_less_round.png and /dev/null differ diff --git a/outputs/png/expand_less_sharp.png b/outputs/png/expand_less_sharp.png deleted file mode 100644 index c704ac6d..00000000 Binary files a/outputs/png/expand_less_sharp.png and /dev/null differ diff --git a/outputs/png/expand_more_round.png b/outputs/png/expand_more_round.png deleted file mode 100644 index 3ef1eed0..00000000 Binary files a/outputs/png/expand_more_round.png and /dev/null differ diff --git a/outputs/png/expand_more_sharp.png b/outputs/png/expand_more_sharp.png deleted file mode 100644 index 327b72a0..00000000 Binary files a/outputs/png/expand_more_sharp.png and /dev/null differ diff --git a/outputs/png/eye_dropper_round.png b/outputs/png/eye_dropper_round.png deleted file mode 100644 index 328127d5..00000000 Binary files a/outputs/png/eye_dropper_round.png and /dev/null differ diff --git a/outputs/png/eye_dropper_sharp.png b/outputs/png/eye_dropper_sharp.png deleted file mode 100644 index a2ca715e..00000000 Binary files a/outputs/png/eye_dropper_sharp.png and /dev/null differ diff --git a/outputs/png/eye_preview_round.png b/outputs/png/eye_preview_round.png deleted file mode 100644 index 8e8cd4c6..00000000 Binary files a/outputs/png/eye_preview_round.png and /dev/null differ diff --git a/outputs/png/eye_preview_sharp.png b/outputs/png/eye_preview_sharp.png deleted file mode 100644 index 8e8cd4c6..00000000 Binary files a/outputs/png/eye_preview_sharp.png and /dev/null differ diff --git a/outputs/png/face_id_round.png b/outputs/png/face_id_round.png deleted file mode 100644 index 8700285e..00000000 Binary files a/outputs/png/face_id_round.png and /dev/null differ diff --git a/outputs/png/face_id_sharp.png b/outputs/png/face_id_sharp.png deleted file mode 100644 index 8700285e..00000000 Binary files a/outputs/png/face_id_sharp.png and /dev/null differ diff --git a/outputs/png/facebook_round.png b/outputs/png/facebook_round.png deleted file mode 100644 index 57cfbec6..00000000 Binary files a/outputs/png/facebook_round.png and /dev/null differ diff --git a/outputs/png/facebook_sharp.png b/outputs/png/facebook_sharp.png deleted file mode 100644 index 57cfbec6..00000000 Binary files a/outputs/png/facebook_sharp.png and /dev/null differ diff --git a/outputs/png/factory_round.png b/outputs/png/factory_round.png deleted file mode 100644 index 4b2b5c56..00000000 Binary files a/outputs/png/factory_round.png and /dev/null differ diff --git a/outputs/png/factory_sharp.png b/outputs/png/factory_sharp.png deleted file mode 100644 index 4b2b5c56..00000000 Binary files a/outputs/png/factory_sharp.png and /dev/null differ diff --git a/outputs/png/fast_forward_round.png b/outputs/png/fast_forward_round.png deleted file mode 100644 index da5852d9..00000000 Binary files a/outputs/png/fast_forward_round.png and /dev/null differ diff --git a/outputs/png/fast_forward_sharp.png b/outputs/png/fast_forward_sharp.png deleted file mode 100644 index 6b1aa25f..00000000 Binary files a/outputs/png/fast_forward_sharp.png and /dev/null differ diff --git a/outputs/png/fast_rewind_round.png b/outputs/png/fast_rewind_round.png deleted file mode 100644 index 981a19b8..00000000 Binary files a/outputs/png/fast_rewind_round.png and /dev/null differ diff --git a/outputs/png/fast_rewind_sharp.png b/outputs/png/fast_rewind_sharp.png deleted file mode 100644 index 8e4466b6..00000000 Binary files a/outputs/png/fast_rewind_sharp.png and /dev/null differ diff --git a/outputs/png/file_round.png b/outputs/png/file_round.png deleted file mode 100644 index 842cfa2a..00000000 Binary files a/outputs/png/file_round.png and /dev/null differ diff --git a/outputs/png/file_sharp.png b/outputs/png/file_sharp.png deleted file mode 100644 index 842cfa2a..00000000 Binary files a/outputs/png/file_sharp.png and /dev/null differ diff --git a/outputs/png/filter_alt_round.png b/outputs/png/filter_alt_round.png deleted file mode 100644 index 8019dd7b..00000000 Binary files a/outputs/png/filter_alt_round.png and /dev/null differ diff --git a/outputs/png/filter_alt_sharp.png b/outputs/png/filter_alt_sharp.png deleted file mode 100644 index 2921736f..00000000 Binary files a/outputs/png/filter_alt_sharp.png and /dev/null differ diff --git a/outputs/png/filter_round.png b/outputs/png/filter_round.png deleted file mode 100644 index bc917a7f..00000000 Binary files a/outputs/png/filter_round.png and /dev/null differ diff --git a/outputs/png/filter_sharp.png b/outputs/png/filter_sharp.png deleted file mode 100644 index 83d86e72..00000000 Binary files a/outputs/png/filter_sharp.png and /dev/null differ diff --git a/outputs/png/finished_download_round.png b/outputs/png/finished_download_round.png deleted file mode 100644 index dbb55fd3..00000000 Binary files a/outputs/png/finished_download_round.png and /dev/null differ diff --git a/outputs/png/finished_download_sharp.png b/outputs/png/finished_download_sharp.png deleted file mode 100644 index cf895332..00000000 Binary files a/outputs/png/finished_download_sharp.png and /dev/null differ diff --git a/outputs/png/first_page_round.png b/outputs/png/first_page_round.png deleted file mode 100644 index 638f1500..00000000 Binary files a/outputs/png/first_page_round.png and /dev/null differ diff --git a/outputs/png/first_page_sharp.png b/outputs/png/first_page_sharp.png deleted file mode 100644 index 6a83e7b7..00000000 Binary files a/outputs/png/first_page_sharp.png and /dev/null differ diff --git a/outputs/png/flag_round.png b/outputs/png/flag_round.png deleted file mode 100644 index 5550b9bd..00000000 Binary files a/outputs/png/flag_round.png and /dev/null differ diff --git a/outputs/png/flag_sharp.png b/outputs/png/flag_sharp.png deleted file mode 100644 index a3faeca1..00000000 Binary files a/outputs/png/flag_sharp.png and /dev/null differ diff --git a/outputs/png/flight_mode_round.png b/outputs/png/flight_mode_round.png deleted file mode 100644 index 593a209a..00000000 Binary files a/outputs/png/flight_mode_round.png and /dev/null differ diff --git a/outputs/png/flight_mode_sharp.png b/outputs/png/flight_mode_sharp.png deleted file mode 100644 index fed43a4e..00000000 Binary files a/outputs/png/flight_mode_sharp.png and /dev/null differ diff --git a/outputs/png/flight_round.png b/outputs/png/flight_round.png deleted file mode 100644 index 07b98a47..00000000 Binary files a/outputs/png/flight_round.png and /dev/null differ diff --git a/outputs/png/flight_sharp.png b/outputs/png/flight_sharp.png deleted file mode 100644 index 32882a2f..00000000 Binary files a/outputs/png/flight_sharp.png and /dev/null differ diff --git a/outputs/png/flip_round.png b/outputs/png/flip_round.png deleted file mode 100644 index 5758f829..00000000 Binary files a/outputs/png/flip_round.png and /dev/null differ diff --git a/outputs/png/flip_sharp.png b/outputs/png/flip_sharp.png deleted file mode 100644 index 5758f829..00000000 Binary files a/outputs/png/flip_sharp.png and /dev/null differ diff --git a/outputs/png/folder_file_round.png b/outputs/png/folder_file_round.png deleted file mode 100644 index d2a6b0b3..00000000 Binary files a/outputs/png/folder_file_round.png and /dev/null differ diff --git a/outputs/png/folder_file_sharp.png b/outputs/png/folder_file_sharp.png deleted file mode 100644 index d2a6b0b3..00000000 Binary files a/outputs/png/folder_file_sharp.png and /dev/null differ diff --git a/outputs/png/folder_outline_round.png b/outputs/png/folder_outline_round.png deleted file mode 100644 index 864107c8..00000000 Binary files a/outputs/png/folder_outline_round.png and /dev/null differ diff --git a/outputs/png/folder_outline_sharp.png b/outputs/png/folder_outline_sharp.png deleted file mode 100644 index 71c24059..00000000 Binary files a/outputs/png/folder_outline_sharp.png and /dev/null differ diff --git a/outputs/png/folder_round.png b/outputs/png/folder_round.png deleted file mode 100644 index 0ceea0c1..00000000 Binary files a/outputs/png/folder_round.png and /dev/null differ diff --git a/outputs/png/folder_sharp.png b/outputs/png/folder_sharp.png deleted file mode 100644 index 2363eb69..00000000 Binary files a/outputs/png/folder_sharp.png and /dev/null differ diff --git a/outputs/png/font_size_decrease_round.png b/outputs/png/font_size_decrease_round.png deleted file mode 100644 index 5f576c7a..00000000 Binary files a/outputs/png/font_size_decrease_round.png and /dev/null differ diff --git a/outputs/png/font_size_decrease_sharp.png b/outputs/png/font_size_decrease_sharp.png deleted file mode 100644 index 6c63e819..00000000 Binary files a/outputs/png/font_size_decrease_sharp.png and /dev/null differ diff --git a/outputs/png/font_size_increase_round.png b/outputs/png/font_size_increase_round.png deleted file mode 100644 index 17deb908..00000000 Binary files a/outputs/png/font_size_increase_round.png and /dev/null differ diff --git a/outputs/png/font_size_increase_sharp.png b/outputs/png/font_size_increase_sharp.png deleted file mode 100644 index 27aeb25b..00000000 Binary files a/outputs/png/font_size_increase_sharp.png and /dev/null differ diff --git a/outputs/png/format_shapes_round.png b/outputs/png/format_shapes_round.png deleted file mode 100644 index daec7951..00000000 Binary files a/outputs/png/format_shapes_round.png and /dev/null differ diff --git a/outputs/png/format_shapes_sharp.png b/outputs/png/format_shapes_sharp.png deleted file mode 100644 index 918a3f36..00000000 Binary files a/outputs/png/format_shapes_sharp.png and /dev/null differ diff --git a/outputs/png/forward_round.png b/outputs/png/forward_round.png deleted file mode 100644 index b9399eab..00000000 Binary files a/outputs/png/forward_round.png and /dev/null differ diff --git a/outputs/png/forward_sharp.png b/outputs/png/forward_sharp.png deleted file mode 100644 index b9399eab..00000000 Binary files a/outputs/png/forward_sharp.png and /dev/null differ diff --git a/outputs/png/freezer_round.png b/outputs/png/freezer_round.png deleted file mode 100644 index 7200eb1c..00000000 Binary files a/outputs/png/freezer_round.png and /dev/null differ diff --git a/outputs/png/freezer_sharp.png b/outputs/png/freezer_sharp.png deleted file mode 100644 index 7200eb1c..00000000 Binary files a/outputs/png/freezer_sharp.png and /dev/null differ diff --git a/outputs/png/full_screen_exit_round.png b/outputs/png/full_screen_exit_round.png deleted file mode 100644 index 8cd4b3ba..00000000 Binary files a/outputs/png/full_screen_exit_round.png and /dev/null differ diff --git a/outputs/png/full_screen_exit_sharp.png b/outputs/png/full_screen_exit_sharp.png deleted file mode 100644 index 12439360..00000000 Binary files a/outputs/png/full_screen_exit_sharp.png and /dev/null differ diff --git a/outputs/png/full_screen_round.png b/outputs/png/full_screen_round.png deleted file mode 100644 index d98e7dbf..00000000 Binary files a/outputs/png/full_screen_round.png and /dev/null differ diff --git a/outputs/png/full_screen_sharp.png b/outputs/png/full_screen_sharp.png deleted file mode 100644 index ae4c432b..00000000 Binary files a/outputs/png/full_screen_sharp.png and /dev/null differ diff --git a/outputs/png/gif_round.png b/outputs/png/gif_round.png deleted file mode 100644 index d0d9d4de..00000000 Binary files a/outputs/png/gif_round.png and /dev/null differ diff --git a/outputs/png/gif_sharp.png b/outputs/png/gif_sharp.png deleted file mode 100644 index d0d9d4de..00000000 Binary files a/outputs/png/gif_sharp.png and /dev/null differ diff --git a/outputs/png/glossary_round.png b/outputs/png/glossary_round.png deleted file mode 100644 index 65cf80f6..00000000 Binary files a/outputs/png/glossary_round.png and /dev/null differ diff --git a/outputs/png/glossary_sharp.png b/outputs/png/glossary_sharp.png deleted file mode 100644 index 65cf80f6..00000000 Binary files a/outputs/png/glossary_sharp.png and /dev/null differ diff --git a/outputs/png/grid_off_round.png b/outputs/png/grid_off_round.png deleted file mode 100644 index 10416613..00000000 Binary files a/outputs/png/grid_off_round.png and /dev/null differ diff --git a/outputs/png/grid_off_sharp.png b/outputs/png/grid_off_sharp.png deleted file mode 100644 index 3a992c77..00000000 Binary files a/outputs/png/grid_off_sharp.png and /dev/null differ diff --git a/outputs/png/grid_on_round.png b/outputs/png/grid_on_round.png deleted file mode 100644 index aa94b770..00000000 Binary files a/outputs/png/grid_on_round.png and /dev/null differ diff --git a/outputs/png/grid_on_sharp.png b/outputs/png/grid_on_sharp.png deleted file mode 100644 index 885024c6..00000000 Binary files a/outputs/png/grid_on_sharp.png and /dev/null differ diff --git a/outputs/png/grid_view_round.png b/outputs/png/grid_view_round.png deleted file mode 100644 index 6fb5267a..00000000 Binary files a/outputs/png/grid_view_round.png and /dev/null differ diff --git a/outputs/png/grid_view_sharp.png b/outputs/png/grid_view_sharp.png deleted file mode 100644 index 8f5f5046..00000000 Binary files a/outputs/png/grid_view_sharp.png and /dev/null differ diff --git a/outputs/png/group_round.png b/outputs/png/group_round.png deleted file mode 100644 index 369f0d34..00000000 Binary files a/outputs/png/group_round.png and /dev/null differ diff --git a/outputs/png/group_sharp.png b/outputs/png/group_sharp.png deleted file mode 100644 index bac8faac..00000000 Binary files a/outputs/png/group_sharp.png and /dev/null differ diff --git a/outputs/png/groups_round.png b/outputs/png/groups_round.png deleted file mode 100644 index dfaceaac..00000000 Binary files a/outputs/png/groups_round.png and /dev/null differ diff --git a/outputs/png/groups_sharp.png b/outputs/png/groups_sharp.png deleted file mode 100644 index b3a3c798..00000000 Binary files a/outputs/png/groups_sharp.png and /dev/null differ diff --git a/outputs/png/hamburger_menu_navigation_rail_round.png b/outputs/png/hamburger_menu_navigation_rail_round.png deleted file mode 100644 index 5a1c3a6d..00000000 Binary files a/outputs/png/hamburger_menu_navigation_rail_round.png and /dev/null differ diff --git a/outputs/png/hamburger_menu_navigation_rail_sharp.png b/outputs/png/hamburger_menu_navigation_rail_sharp.png deleted file mode 100644 index 9ff9026b..00000000 Binary files a/outputs/png/hamburger_menu_navigation_rail_sharp.png and /dev/null differ diff --git a/outputs/png/hamburger_menu_round.png b/outputs/png/hamburger_menu_round.png deleted file mode 100644 index da954244..00000000 Binary files a/outputs/png/hamburger_menu_round.png and /dev/null differ diff --git a/outputs/png/hamburger_menu_sharp.png b/outputs/png/hamburger_menu_sharp.png deleted file mode 100644 index e7f54a17..00000000 Binary files a/outputs/png/hamburger_menu_sharp.png and /dev/null differ diff --git a/outputs/png/hamburger_menu_thick_round.png b/outputs/png/hamburger_menu_thick_round.png deleted file mode 100644 index d17bf11a..00000000 Binary files a/outputs/png/hamburger_menu_thick_round.png and /dev/null differ diff --git a/outputs/png/hamburger_menu_thick_sharp.png b/outputs/png/hamburger_menu_thick_sharp.png deleted file mode 100644 index 6daaf234..00000000 Binary files a/outputs/png/hamburger_menu_thick_sharp.png and /dev/null differ diff --git a/outputs/png/hand_round.png b/outputs/png/hand_round.png deleted file mode 100644 index 56ea3658..00000000 Binary files a/outputs/png/hand_round.png and /dev/null differ diff --git a/outputs/png/hand_sharp.png b/outputs/png/hand_sharp.png deleted file mode 100644 index 56ea3658..00000000 Binary files a/outputs/png/hand_sharp.png and /dev/null differ diff --git a/outputs/png/happy_round.png b/outputs/png/happy_round.png deleted file mode 100644 index 89c10be3..00000000 Binary files a/outputs/png/happy_round.png and /dev/null differ diff --git a/outputs/png/happy_sharp.png b/outputs/png/happy_sharp.png deleted file mode 100644 index 68301c61..00000000 Binary files a/outputs/png/happy_sharp.png and /dev/null differ diff --git a/outputs/png/hdmi_round.png b/outputs/png/hdmi_round.png deleted file mode 100644 index 1224ec47..00000000 Binary files a/outputs/png/hdmi_round.png and /dev/null differ diff --git a/outputs/png/hdmi_sharp.png b/outputs/png/hdmi_sharp.png deleted file mode 100644 index 1224ec47..00000000 Binary files a/outputs/png/hdmi_sharp.png and /dev/null differ diff --git a/outputs/png/hdr_round.png b/outputs/png/hdr_round.png deleted file mode 100644 index 061a1d25..00000000 Binary files a/outputs/png/hdr_round.png and /dev/null differ diff --git a/outputs/png/hdr_sharp.png b/outputs/png/hdr_sharp.png deleted file mode 100644 index 061a1d25..00000000 Binary files a/outputs/png/hdr_sharp.png and /dev/null differ diff --git a/outputs/png/headphones_round.png b/outputs/png/headphones_round.png deleted file mode 100644 index e6ca73c5..00000000 Binary files a/outputs/png/headphones_round.png and /dev/null differ diff --git a/outputs/png/headphones_sharp.png b/outputs/png/headphones_sharp.png deleted file mode 100644 index 81be525d..00000000 Binary files a/outputs/png/headphones_sharp.png and /dev/null differ diff --git a/outputs/png/headset_round.png b/outputs/png/headset_round.png deleted file mode 100644 index 96bef797..00000000 Binary files a/outputs/png/headset_round.png and /dev/null differ diff --git a/outputs/png/headset_sharp.png b/outputs/png/headset_sharp.png deleted file mode 100644 index 96bef797..00000000 Binary files a/outputs/png/headset_sharp.png and /dev/null differ diff --git a/outputs/png/help_outline_round.png b/outputs/png/help_outline_round.png deleted file mode 100644 index 514284ed..00000000 Binary files a/outputs/png/help_outline_round.png and /dev/null differ diff --git a/outputs/png/help_outline_sharp.png b/outputs/png/help_outline_sharp.png deleted file mode 100644 index f2305265..00000000 Binary files a/outputs/png/help_outline_sharp.png and /dev/null differ diff --git a/outputs/png/help_round.png b/outputs/png/help_round.png deleted file mode 100644 index 7623e851..00000000 Binary files a/outputs/png/help_round.png and /dev/null differ diff --git a/outputs/png/help_sharp.png b/outputs/png/help_sharp.png deleted file mode 100644 index b0183257..00000000 Binary files a/outputs/png/help_sharp.png and /dev/null differ diff --git a/outputs/png/history_round.png b/outputs/png/history_round.png deleted file mode 100644 index 6091dddd..00000000 Binary files a/outputs/png/history_round.png and /dev/null differ diff --git a/outputs/png/history_sharp.png b/outputs/png/history_sharp.png deleted file mode 100644 index 3a1b4bbf..00000000 Binary files a/outputs/png/history_sharp.png and /dev/null differ diff --git a/outputs/png/home_round.png b/outputs/png/home_round.png deleted file mode 100644 index 09419df9..00000000 Binary files a/outputs/png/home_round.png and /dev/null differ diff --git a/outputs/png/home_sharp.png b/outputs/png/home_sharp.png deleted file mode 100644 index fae01249..00000000 Binary files a/outputs/png/home_sharp.png and /dev/null differ diff --git a/outputs/png/hourglass_round.png b/outputs/png/hourglass_round.png deleted file mode 100644 index 29b3a920..00000000 Binary files a/outputs/png/hourglass_round.png and /dev/null differ diff --git a/outputs/png/hourglass_sharp.png b/outputs/png/hourglass_sharp.png deleted file mode 100644 index 29b3a920..00000000 Binary files a/outputs/png/hourglass_sharp.png and /dev/null differ diff --git a/outputs/png/how_do_i_round.png b/outputs/png/how_do_i_round.png deleted file mode 100644 index 37342074..00000000 Binary files a/outputs/png/how_do_i_round.png and /dev/null differ diff --git a/outputs/png/how_do_i_sharp.png b/outputs/png/how_do_i_sharp.png deleted file mode 100644 index 37342074..00000000 Binary files a/outputs/png/how_do_i_sharp.png and /dev/null differ diff --git a/outputs/png/image_library_round.png b/outputs/png/image_library_round.png deleted file mode 100644 index a517bf86..00000000 Binary files a/outputs/png/image_library_round.png and /dev/null differ diff --git a/outputs/png/image_library_sharp.png b/outputs/png/image_library_sharp.png deleted file mode 100644 index d20c1f83..00000000 Binary files a/outputs/png/image_library_sharp.png and /dev/null differ diff --git a/outputs/png/image_round.png b/outputs/png/image_round.png deleted file mode 100644 index 61b77119..00000000 Binary files a/outputs/png/image_round.png and /dev/null differ diff --git a/outputs/png/image_sharp.png b/outputs/png/image_sharp.png deleted file mode 100644 index e8896114..00000000 Binary files a/outputs/png/image_sharp.png and /dev/null differ diff --git a/outputs/png/important_notification_round.png b/outputs/png/important_notification_round.png deleted file mode 100644 index 03cd53ee..00000000 Binary files a/outputs/png/important_notification_round.png and /dev/null differ diff --git a/outputs/png/important_notification_sharp.png b/outputs/png/important_notification_sharp.png deleted file mode 100644 index 820c98a8..00000000 Binary files a/outputs/png/important_notification_sharp.png and /dev/null differ diff --git a/outputs/png/inbox_round.png b/outputs/png/inbox_round.png deleted file mode 100644 index 2c0e4c60..00000000 Binary files a/outputs/png/inbox_round.png and /dev/null differ diff --git a/outputs/png/inbox_sharp.png b/outputs/png/inbox_sharp.png deleted file mode 100644 index 2c0e4c60..00000000 Binary files a/outputs/png/inbox_sharp.png and /dev/null differ diff --git a/outputs/png/indent_decrease_round.png b/outputs/png/indent_decrease_round.png deleted file mode 100644 index e45d3cbf..00000000 Binary files a/outputs/png/indent_decrease_round.png and /dev/null differ diff --git a/outputs/png/indent_decrease_sharp.png b/outputs/png/indent_decrease_sharp.png deleted file mode 100644 index 327d069f..00000000 Binary files a/outputs/png/indent_decrease_sharp.png and /dev/null differ diff --git a/outputs/png/indent_increase_round.png b/outputs/png/indent_increase_round.png deleted file mode 100644 index 331ee1a8..00000000 Binary files a/outputs/png/indent_increase_round.png and /dev/null differ diff --git a/outputs/png/indent_increase_sharp.png b/outputs/png/indent_increase_sharp.png deleted file mode 100644 index fa95c81a..00000000 Binary files a/outputs/png/indent_increase_sharp.png and /dev/null differ diff --git a/outputs/png/indeterminate_check_box_round.png b/outputs/png/indeterminate_check_box_round.png deleted file mode 100644 index 1990cc3a..00000000 Binary files a/outputs/png/indeterminate_check_box_round.png and /dev/null differ diff --git a/outputs/png/indeterminate_check_box_sharp.png b/outputs/png/indeterminate_check_box_sharp.png deleted file mode 100644 index ece77167..00000000 Binary files a/outputs/png/indeterminate_check_box_sharp.png and /dev/null differ diff --git a/outputs/png/info_round.png b/outputs/png/info_round.png deleted file mode 100644 index fa62da26..00000000 Binary files a/outputs/png/info_round.png and /dev/null differ diff --git a/outputs/png/info_sharp.png b/outputs/png/info_sharp.png deleted file mode 100644 index a754fed6..00000000 Binary files a/outputs/png/info_sharp.png and /dev/null differ diff --git a/outputs/png/instagram_round.png b/outputs/png/instagram_round.png deleted file mode 100644 index f71ce870..00000000 Binary files a/outputs/png/instagram_round.png and /dev/null differ diff --git a/outputs/png/instagram_sharp.png b/outputs/png/instagram_sharp.png deleted file mode 100644 index f71ce870..00000000 Binary files a/outputs/png/instagram_sharp.png and /dev/null differ diff --git a/outputs/png/ios_share_round.png b/outputs/png/ios_share_round.png deleted file mode 100644 index 0edabcda..00000000 Binary files a/outputs/png/ios_share_round.png and /dev/null differ diff --git a/outputs/png/ios_share_sharp.png b/outputs/png/ios_share_sharp.png deleted file mode 100644 index ecf98483..00000000 Binary files a/outputs/png/ios_share_sharp.png and /dev/null differ diff --git a/outputs/png/iso_round.png b/outputs/png/iso_round.png deleted file mode 100644 index 9c82c950..00000000 Binary files a/outputs/png/iso_round.png and /dev/null differ diff --git a/outputs/png/iso_sharp.png b/outputs/png/iso_sharp.png deleted file mode 100644 index 278df7e7..00000000 Binary files a/outputs/png/iso_sharp.png and /dev/null differ diff --git a/outputs/png/issue_audit_round.png b/outputs/png/issue_audit_round.png deleted file mode 100644 index 625d866a..00000000 Binary files a/outputs/png/issue_audit_round.png and /dev/null differ diff --git a/outputs/png/issue_audit_sharp.png b/outputs/png/issue_audit_sharp.png deleted file mode 100644 index 625d866a..00000000 Binary files a/outputs/png/issue_audit_sharp.png and /dev/null differ diff --git a/outputs/png/italic_round.png b/outputs/png/italic_round.png deleted file mode 100644 index 87e2c886..00000000 Binary files a/outputs/png/italic_round.png and /dev/null differ diff --git a/outputs/png/italic_sharp.png b/outputs/png/italic_sharp.png deleted file mode 100644 index 9581f77e..00000000 Binary files a/outputs/png/italic_sharp.png and /dev/null differ diff --git a/outputs/png/jpg_attach_round.png b/outputs/png/jpg_attach_round.png deleted file mode 100644 index 4d6c4e3a..00000000 Binary files a/outputs/png/jpg_attach_round.png and /dev/null differ diff --git a/outputs/png/jpg_attach_sharp.png b/outputs/png/jpg_attach_sharp.png deleted file mode 100644 index 6625f5a9..00000000 Binary files a/outputs/png/jpg_attach_sharp.png and /dev/null differ diff --git a/outputs/png/justify_round.png b/outputs/png/justify_round.png deleted file mode 100644 index 71a6b5a7..00000000 Binary files a/outputs/png/justify_round.png and /dev/null differ diff --git a/outputs/png/justify_sharp.png b/outputs/png/justify_sharp.png deleted file mode 100644 index 81b2c1dc..00000000 Binary files a/outputs/png/justify_sharp.png and /dev/null differ diff --git a/outputs/png/keyboard_round.png b/outputs/png/keyboard_round.png deleted file mode 100644 index c1d3de03..00000000 Binary files a/outputs/png/keyboard_round.png and /dev/null differ diff --git a/outputs/png/keyboard_sharp.png b/outputs/png/keyboard_sharp.png deleted file mode 100644 index fabdb20e..00000000 Binary files a/outputs/png/keyboard_sharp.png and /dev/null differ diff --git a/outputs/png/label_round.png b/outputs/png/label_round.png deleted file mode 100644 index a2ca919a..00000000 Binary files a/outputs/png/label_round.png and /dev/null differ diff --git a/outputs/png/label_sharp.png b/outputs/png/label_sharp.png deleted file mode 100644 index 6b768a59..00000000 Binary files a/outputs/png/label_sharp.png and /dev/null differ diff --git a/outputs/png/laptop_round.png b/outputs/png/laptop_round.png deleted file mode 100644 index e9fcf272..00000000 Binary files a/outputs/png/laptop_round.png and /dev/null differ diff --git a/outputs/png/laptop_sharp.png b/outputs/png/laptop_sharp.png deleted file mode 100644 index c212f749..00000000 Binary files a/outputs/png/laptop_sharp.png and /dev/null differ diff --git a/outputs/png/last_page_round.png b/outputs/png/last_page_round.png deleted file mode 100644 index b7442e26..00000000 Binary files a/outputs/png/last_page_round.png and /dev/null differ diff --git a/outputs/png/last_page_sharp.png b/outputs/png/last_page_sharp.png deleted file mode 100644 index be90c733..00000000 Binary files a/outputs/png/last_page_sharp.png and /dev/null differ diff --git a/outputs/png/layers_round.png b/outputs/png/layers_round.png deleted file mode 100644 index 0f52020c..00000000 Binary files a/outputs/png/layers_round.png and /dev/null differ diff --git a/outputs/png/layers_sharp.png b/outputs/png/layers_sharp.png deleted file mode 100644 index e73a6c22..00000000 Binary files a/outputs/png/layers_sharp.png and /dev/null differ diff --git a/outputs/png/light_mode_round.png b/outputs/png/light_mode_round.png deleted file mode 100644 index 60dc17cf..00000000 Binary files a/outputs/png/light_mode_round.png and /dev/null differ diff --git a/outputs/png/light_mode_sharp.png b/outputs/png/light_mode_sharp.png deleted file mode 100644 index 966dbc54..00000000 Binary files a/outputs/png/light_mode_sharp.png and /dev/null differ diff --git a/outputs/png/light_rail_train_round.png b/outputs/png/light_rail_train_round.png deleted file mode 100644 index 7e61b252..00000000 Binary files a/outputs/png/light_rail_train_round.png and /dev/null differ diff --git a/outputs/png/light_rail_train_sharp.png b/outputs/png/light_rail_train_sharp.png deleted file mode 100644 index 39138c6c..00000000 Binary files a/outputs/png/light_rail_train_sharp.png and /dev/null differ diff --git a/outputs/png/lightbulb_round.png b/outputs/png/lightbulb_round.png deleted file mode 100644 index fbd242d9..00000000 Binary files a/outputs/png/lightbulb_round.png and /dev/null differ diff --git a/outputs/png/lightbulb_sharp.png b/outputs/png/lightbulb_sharp.png deleted file mode 100644 index fbd242d9..00000000 Binary files a/outputs/png/lightbulb_sharp.png and /dev/null differ diff --git a/outputs/png/like_round.png b/outputs/png/like_round.png deleted file mode 100644 index 3d9b5537..00000000 Binary files a/outputs/png/like_round.png and /dev/null differ diff --git a/outputs/png/like_sharp.png b/outputs/png/like_sharp.png deleted file mode 100644 index af66e650..00000000 Binary files a/outputs/png/like_sharp.png and /dev/null differ diff --git a/outputs/png/line_spacing_round.png b/outputs/png/line_spacing_round.png deleted file mode 100644 index e484999c..00000000 Binary files a/outputs/png/line_spacing_round.png and /dev/null differ diff --git a/outputs/png/line_spacing_sharp.png b/outputs/png/line_spacing_sharp.png deleted file mode 100644 index 2f76e76c..00000000 Binary files a/outputs/png/line_spacing_sharp.png and /dev/null differ diff --git a/outputs/png/link_add_round.png b/outputs/png/link_add_round.png deleted file mode 100644 index 19cc7ea0..00000000 Binary files a/outputs/png/link_add_round.png and /dev/null differ diff --git a/outputs/png/link_add_sharp.png b/outputs/png/link_add_sharp.png deleted file mode 100644 index 19cc7ea0..00000000 Binary files a/outputs/png/link_add_sharp.png and /dev/null differ diff --git a/outputs/png/link_round.png b/outputs/png/link_round.png deleted file mode 100644 index 26915ba8..00000000 Binary files a/outputs/png/link_round.png and /dev/null differ diff --git a/outputs/png/link_sharp.png b/outputs/png/link_sharp.png deleted file mode 100644 index ac7f908b..00000000 Binary files a/outputs/png/link_sharp.png and /dev/null differ diff --git a/outputs/png/linkedin_round.png b/outputs/png/linkedin_round.png deleted file mode 100644 index c80b4ca8..00000000 Binary files a/outputs/png/linkedin_round.png and /dev/null differ diff --git a/outputs/png/linkedin_sharp.png b/outputs/png/linkedin_sharp.png deleted file mode 100644 index c80b4ca8..00000000 Binary files a/outputs/png/linkedin_sharp.png and /dev/null differ diff --git a/outputs/png/list_alt_round.png b/outputs/png/list_alt_round.png deleted file mode 100644 index e5136881..00000000 Binary files a/outputs/png/list_alt_round.png and /dev/null differ diff --git a/outputs/png/list_alt_sharp.png b/outputs/png/list_alt_sharp.png deleted file mode 100644 index a7ac7c0f..00000000 Binary files a/outputs/png/list_alt_sharp.png and /dev/null differ diff --git a/outputs/png/list_bullet_contained_round.png b/outputs/png/list_bullet_contained_round.png deleted file mode 100644 index 457e3159..00000000 Binary files a/outputs/png/list_bullet_contained_round.png and /dev/null differ diff --git a/outputs/png/list_bullet_contained_sharp.png b/outputs/png/list_bullet_contained_sharp.png deleted file mode 100644 index 457e3159..00000000 Binary files a/outputs/png/list_bullet_contained_sharp.png and /dev/null differ diff --git a/outputs/png/list_feedback_round.png b/outputs/png/list_feedback_round.png deleted file mode 100644 index fc5d977b..00000000 Binary files a/outputs/png/list_feedback_round.png and /dev/null differ diff --git a/outputs/png/list_feedback_sharp.png b/outputs/png/list_feedback_sharp.png deleted file mode 100644 index fc5d977b..00000000 Binary files a/outputs/png/list_feedback_sharp.png and /dev/null differ diff --git a/outputs/png/list_form_round.png b/outputs/png/list_form_round.png deleted file mode 100644 index bece0219..00000000 Binary files a/outputs/png/list_form_round.png and /dev/null differ diff --git a/outputs/png/list_form_sharp.png b/outputs/png/list_form_sharp.png deleted file mode 100644 index bece0219..00000000 Binary files a/outputs/png/list_form_sharp.png and /dev/null differ diff --git a/outputs/png/list_round.png b/outputs/png/list_round.png deleted file mode 100644 index ae479dd4..00000000 Binary files a/outputs/png/list_round.png and /dev/null differ diff --git a/outputs/png/list_sharp.png b/outputs/png/list_sharp.png deleted file mode 100644 index 777922fe..00000000 Binary files a/outputs/png/list_sharp.png and /dev/null differ diff --git a/outputs/png/local_shipping_round.png b/outputs/png/local_shipping_round.png deleted file mode 100644 index 28962c48..00000000 Binary files a/outputs/png/local_shipping_round.png and /dev/null differ diff --git a/outputs/png/local_shipping_sharp.png b/outputs/png/local_shipping_sharp.png deleted file mode 100644 index 5ad4310c..00000000 Binary files a/outputs/png/local_shipping_sharp.png and /dev/null differ diff --git a/outputs/png/location_off_round.png b/outputs/png/location_off_round.png deleted file mode 100644 index 47c798f4..00000000 Binary files a/outputs/png/location_off_round.png and /dev/null differ diff --git a/outputs/png/location_off_sharp.png b/outputs/png/location_off_sharp.png deleted file mode 100644 index 47c798f4..00000000 Binary files a/outputs/png/location_off_sharp.png and /dev/null differ diff --git a/outputs/png/location_point_round.png b/outputs/png/location_point_round.png deleted file mode 100644 index afa6f633..00000000 Binary files a/outputs/png/location_point_round.png and /dev/null differ diff --git a/outputs/png/location_point_sharp.png b/outputs/png/location_point_sharp.png deleted file mode 100644 index c3bee3ca..00000000 Binary files a/outputs/png/location_point_sharp.png and /dev/null differ diff --git a/outputs/png/location_round.png b/outputs/png/location_round.png deleted file mode 100644 index 2a227ff2..00000000 Binary files a/outputs/png/location_round.png and /dev/null differ diff --git a/outputs/png/location_sharp.png b/outputs/png/location_sharp.png deleted file mode 100644 index 650293f3..00000000 Binary files a/outputs/png/location_sharp.png and /dev/null differ diff --git a/outputs/png/lock_alt_round.png b/outputs/png/lock_alt_round.png deleted file mode 100644 index d34ccc2e..00000000 Binary files a/outputs/png/lock_alt_round.png and /dev/null differ diff --git a/outputs/png/lock_alt_sharp.png b/outputs/png/lock_alt_sharp.png deleted file mode 100644 index b70e1e55..00000000 Binary files a/outputs/png/lock_alt_sharp.png and /dev/null differ diff --git a/outputs/png/lock_round.png b/outputs/png/lock_round.png deleted file mode 100644 index 9aae7974..00000000 Binary files a/outputs/png/lock_round.png and /dev/null differ diff --git a/outputs/png/lock_sharp.png b/outputs/png/lock_sharp.png deleted file mode 100644 index 10657ef8..00000000 Binary files a/outputs/png/lock_sharp.png and /dev/null differ diff --git a/outputs/png/lock_undo_round.png b/outputs/png/lock_undo_round.png deleted file mode 100644 index 9ce7c3d1..00000000 Binary files a/outputs/png/lock_undo_round.png and /dev/null differ diff --git a/outputs/png/lock_undo_sharp.png b/outputs/png/lock_undo_sharp.png deleted file mode 100644 index 9ce7c3d1..00000000 Binary files a/outputs/png/lock_undo_sharp.png and /dev/null differ diff --git a/outputs/png/log_in_round.png b/outputs/png/log_in_round.png deleted file mode 100644 index 354d2dad..00000000 Binary files a/outputs/png/log_in_round.png and /dev/null differ diff --git a/outputs/png/log_in_sharp.png b/outputs/png/log_in_sharp.png deleted file mode 100644 index 87e9afdf..00000000 Binary files a/outputs/png/log_in_sharp.png and /dev/null differ diff --git a/outputs/png/log_out_round.png b/outputs/png/log_out_round.png deleted file mode 100644 index 217f8aeb..00000000 Binary files a/outputs/png/log_out_round.png and /dev/null differ diff --git a/outputs/png/log_out_sharp.png b/outputs/png/log_out_sharp.png deleted file mode 100644 index c29dfdd1..00000000 Binary files a/outputs/png/log_out_sharp.png and /dev/null differ diff --git a/outputs/png/love_outline_round.png b/outputs/png/love_outline_round.png deleted file mode 100644 index eaa1bdc0..00000000 Binary files a/outputs/png/love_outline_round.png and /dev/null differ diff --git a/outputs/png/love_outline_sharp.png b/outputs/png/love_outline_sharp.png deleted file mode 100644 index 8c4252ca..00000000 Binary files a/outputs/png/love_outline_sharp.png and /dev/null differ diff --git a/outputs/png/love_round.png b/outputs/png/love_round.png deleted file mode 100644 index 246a8f67..00000000 Binary files a/outputs/png/love_round.png and /dev/null differ diff --git a/outputs/png/love_sharp.png b/outputs/png/love_sharp.png deleted file mode 100644 index 23c376a1..00000000 Binary files a/outputs/png/love_sharp.png and /dev/null differ diff --git a/outputs/png/maintenance_round.png b/outputs/png/maintenance_round.png deleted file mode 100644 index 7f0cefa1..00000000 Binary files a/outputs/png/maintenance_round.png and /dev/null differ diff --git a/outputs/png/maintenance_sharp.png b/outputs/png/maintenance_sharp.png deleted file mode 100644 index 7f0cefa1..00000000 Binary files a/outputs/png/maintenance_sharp.png and /dev/null differ diff --git a/outputs/png/map_round.png b/outputs/png/map_round.png deleted file mode 100644 index e8c45f77..00000000 Binary files a/outputs/png/map_round.png and /dev/null differ diff --git a/outputs/png/map_sharp.png b/outputs/png/map_sharp.png deleted file mode 100644 index 1fb15e65..00000000 Binary files a/outputs/png/map_sharp.png and /dev/null differ diff --git a/outputs/png/meal_round.png b/outputs/png/meal_round.png deleted file mode 100644 index ab6107cd..00000000 Binary files a/outputs/png/meal_round.png and /dev/null differ diff --git a/outputs/png/meal_sharp.png b/outputs/png/meal_sharp.png deleted file mode 100644 index ab6107cd..00000000 Binary files a/outputs/png/meal_sharp.png and /dev/null differ diff --git a/outputs/png/medium_round.png b/outputs/png/medium_round.png deleted file mode 100644 index 353a11bc..00000000 Binary files a/outputs/png/medium_round.png and /dev/null differ diff --git a/outputs/png/medium_sharp.png b/outputs/png/medium_sharp.png deleted file mode 100644 index 353a11bc..00000000 Binary files a/outputs/png/medium_sharp.png and /dev/null differ diff --git a/outputs/png/memory_round.png b/outputs/png/memory_round.png deleted file mode 100644 index e862da27..00000000 Binary files a/outputs/png/memory_round.png and /dev/null differ diff --git a/outputs/png/memory_sharp.png b/outputs/png/memory_sharp.png deleted file mode 100644 index 4aeb6c45..00000000 Binary files a/outputs/png/memory_sharp.png and /dev/null differ diff --git a/outputs/png/message_round.png b/outputs/png/message_round.png deleted file mode 100644 index bd930691..00000000 Binary files a/outputs/png/message_round.png and /dev/null differ diff --git a/outputs/png/message_sharp.png b/outputs/png/message_sharp.png deleted file mode 100644 index 16646996..00000000 Binary files a/outputs/png/message_sharp.png and /dev/null differ diff --git a/outputs/png/microphone_off_round.png b/outputs/png/microphone_off_round.png deleted file mode 100644 index bc5f181b..00000000 Binary files a/outputs/png/microphone_off_round.png and /dev/null differ diff --git a/outputs/png/microphone_off_sharp.png b/outputs/png/microphone_off_sharp.png deleted file mode 100644 index 686769b5..00000000 Binary files a/outputs/png/microphone_off_sharp.png and /dev/null differ diff --git a/outputs/png/microphone_outline_round.png b/outputs/png/microphone_outline_round.png deleted file mode 100644 index 2aa5ab36..00000000 Binary files a/outputs/png/microphone_outline_round.png and /dev/null differ diff --git a/outputs/png/microphone_outline_sharp.png b/outputs/png/microphone_outline_sharp.png deleted file mode 100644 index 9b925466..00000000 Binary files a/outputs/png/microphone_outline_sharp.png and /dev/null differ diff --git a/outputs/png/microphone_round.png b/outputs/png/microphone_round.png deleted file mode 100644 index ffcb4115..00000000 Binary files a/outputs/png/microphone_round.png and /dev/null differ diff --git a/outputs/png/microphone_sharp.png b/outputs/png/microphone_sharp.png deleted file mode 100644 index 23095670..00000000 Binary files a/outputs/png/microphone_sharp.png and /dev/null differ diff --git a/outputs/png/mobile_friendly_round.png b/outputs/png/mobile_friendly_round.png deleted file mode 100644 index a8b8919a..00000000 Binary files a/outputs/png/mobile_friendly_round.png and /dev/null differ diff --git a/outputs/png/mobile_friendly_sharp.png b/outputs/png/mobile_friendly_sharp.png deleted file mode 100644 index 174505a5..00000000 Binary files a/outputs/png/mobile_friendly_sharp.png and /dev/null differ diff --git a/outputs/png/money_euro_round.png b/outputs/png/money_euro_round.png deleted file mode 100644 index 38e4a850..00000000 Binary files a/outputs/png/money_euro_round.png and /dev/null differ diff --git a/outputs/png/money_euro_sharp.png b/outputs/png/money_euro_sharp.png deleted file mode 100644 index 38e4a850..00000000 Binary files a/outputs/png/money_euro_sharp.png and /dev/null differ diff --git a/outputs/png/money_pound_round.png b/outputs/png/money_pound_round.png deleted file mode 100644 index 89a24b27..00000000 Binary files a/outputs/png/money_pound_round.png and /dev/null differ diff --git a/outputs/png/money_pound_sharp.png b/outputs/png/money_pound_sharp.png deleted file mode 100644 index 89a24b27..00000000 Binary files a/outputs/png/money_pound_sharp.png and /dev/null differ diff --git a/outputs/png/money_usd_round.png b/outputs/png/money_usd_round.png deleted file mode 100644 index e07457a0..00000000 Binary files a/outputs/png/money_usd_round.png and /dev/null differ diff --git a/outputs/png/money_usd_sharp.png b/outputs/png/money_usd_sharp.png deleted file mode 100644 index e07457a0..00000000 Binary files a/outputs/png/money_usd_sharp.png and /dev/null differ diff --git a/outputs/png/monitor_round.png b/outputs/png/monitor_round.png deleted file mode 100644 index 7fd1aa12..00000000 Binary files a/outputs/png/monitor_round.png and /dev/null differ diff --git a/outputs/png/monitor_sharp.png b/outputs/png/monitor_sharp.png deleted file mode 100644 index ad9988d6..00000000 Binary files a/outputs/png/monitor_sharp.png and /dev/null differ diff --git a/outputs/png/more_horizontal_round.png b/outputs/png/more_horizontal_round.png deleted file mode 100644 index d012502f..00000000 Binary files a/outputs/png/more_horizontal_round.png and /dev/null differ diff --git a/outputs/png/more_horizontal_sharp.png b/outputs/png/more_horizontal_sharp.png deleted file mode 100644 index d012502f..00000000 Binary files a/outputs/png/more_horizontal_sharp.png and /dev/null differ diff --git a/outputs/png/more_vertical_round.png b/outputs/png/more_vertical_round.png deleted file mode 100644 index ae061bee..00000000 Binary files a/outputs/png/more_vertical_round.png and /dev/null differ diff --git a/outputs/png/more_vertical_sharp.png b/outputs/png/more_vertical_sharp.png deleted file mode 100644 index ae061bee..00000000 Binary files a/outputs/png/more_vertical_sharp.png and /dev/null differ diff --git a/outputs/png/my_location_round.png b/outputs/png/my_location_round.png deleted file mode 100644 index afa6f633..00000000 Binary files a/outputs/png/my_location_round.png and /dev/null differ diff --git a/outputs/png/my_location_sharp.png b/outputs/png/my_location_sharp.png deleted file mode 100644 index c3bee3ca..00000000 Binary files a/outputs/png/my_location_sharp.png and /dev/null differ diff --git a/outputs/png/navigate_round.png b/outputs/png/navigate_round.png deleted file mode 100644 index 32b813a8..00000000 Binary files a/outputs/png/navigate_round.png and /dev/null differ diff --git a/outputs/png/navigate_sharp.png b/outputs/png/navigate_sharp.png deleted file mode 100644 index 32b813a8..00000000 Binary files a/outputs/png/navigate_sharp.png and /dev/null differ diff --git a/outputs/png/navigation_round.png b/outputs/png/navigation_round.png deleted file mode 100644 index 4f303c25..00000000 Binary files a/outputs/png/navigation_round.png and /dev/null differ diff --git a/outputs/png/navigation_sharp.png b/outputs/png/navigation_sharp.png deleted file mode 100644 index 697541ae..00000000 Binary files a/outputs/png/navigation_sharp.png and /dev/null differ diff --git a/outputs/png/near_me_round.png b/outputs/png/near_me_round.png deleted file mode 100644 index f9e3a418..00000000 Binary files a/outputs/png/near_me_round.png and /dev/null differ diff --git a/outputs/png/near_me_sharp.png b/outputs/png/near_me_sharp.png deleted file mode 100644 index f9723611..00000000 Binary files a/outputs/png/near_me_sharp.png and /dev/null differ diff --git a/outputs/png/network_signal_round.png b/outputs/png/network_signal_round.png deleted file mode 100644 index 6cb90ef3..00000000 Binary files a/outputs/png/network_signal_round.png and /dev/null differ diff --git a/outputs/png/network_signal_sharp.png b/outputs/png/network_signal_sharp.png deleted file mode 100644 index 60ded2fa..00000000 Binary files a/outputs/png/network_signal_sharp.png and /dev/null differ diff --git a/outputs/png/new_chat_round.png b/outputs/png/new_chat_round.png deleted file mode 100644 index ae6377a0..00000000 Binary files a/outputs/png/new_chat_round.png and /dev/null differ diff --git a/outputs/png/new_chat_sharp.png b/outputs/png/new_chat_sharp.png deleted file mode 100644 index ae6377a0..00000000 Binary files a/outputs/png/new_chat_sharp.png and /dev/null differ diff --git a/outputs/png/nfc_round.png b/outputs/png/nfc_round.png deleted file mode 100644 index af3383d2..00000000 Binary files a/outputs/png/nfc_round.png and /dev/null differ diff --git a/outputs/png/nfc_sharp.png b/outputs/png/nfc_sharp.png deleted file mode 100644 index af3383d2..00000000 Binary files a/outputs/png/nfc_sharp.png and /dev/null differ diff --git a/outputs/png/night_round.png b/outputs/png/night_round.png deleted file mode 100644 index 07fe6047..00000000 Binary files a/outputs/png/night_round.png and /dev/null differ diff --git a/outputs/png/night_sharp.png b/outputs/png/night_sharp.png deleted file mode 100644 index b287a794..00000000 Binary files a/outputs/png/night_sharp.png and /dev/null differ diff --git a/outputs/png/no_color_round.png b/outputs/png/no_color_round.png deleted file mode 100644 index cd73bcb5..00000000 Binary files a/outputs/png/no_color_round.png and /dev/null differ diff --git a/outputs/png/no_color_sharp.png b/outputs/png/no_color_sharp.png deleted file mode 100644 index 2b99c845..00000000 Binary files a/outputs/png/no_color_sharp.png and /dev/null differ diff --git a/outputs/png/note_round.png b/outputs/png/note_round.png deleted file mode 100644 index aee16880..00000000 Binary files a/outputs/png/note_round.png and /dev/null differ diff --git a/outputs/png/note_sharp.png b/outputs/png/note_sharp.png deleted file mode 100644 index aee16880..00000000 Binary files a/outputs/png/note_sharp.png and /dev/null differ diff --git a/outputs/png/notifications_off_round.png b/outputs/png/notifications_off_round.png deleted file mode 100644 index e35d1a11..00000000 Binary files a/outputs/png/notifications_off_round.png and /dev/null differ diff --git a/outputs/png/notifications_off_sharp.png b/outputs/png/notifications_off_sharp.png deleted file mode 100644 index e35d1a11..00000000 Binary files a/outputs/png/notifications_off_sharp.png and /dev/null differ diff --git a/outputs/png/numbered_list_round.png b/outputs/png/numbered_list_round.png deleted file mode 100644 index 0388f61b..00000000 Binary files a/outputs/png/numbered_list_round.png and /dev/null differ diff --git a/outputs/png/numbered_list_sharp.png b/outputs/png/numbered_list_sharp.png deleted file mode 100644 index 1dbe9aa4..00000000 Binary files a/outputs/png/numbered_list_sharp.png and /dev/null differ diff --git a/outputs/png/open_in_full_round.png b/outputs/png/open_in_full_round.png deleted file mode 100644 index 8818d8b9..00000000 Binary files a/outputs/png/open_in_full_round.png and /dev/null differ diff --git a/outputs/png/open_in_full_sharp.png b/outputs/png/open_in_full_sharp.png deleted file mode 100644 index 27ab82a1..00000000 Binary files a/outputs/png/open_in_full_sharp.png and /dev/null differ diff --git a/outputs/png/open_in_new_window_round.png b/outputs/png/open_in_new_window_round.png deleted file mode 100644 index a8e2e0ba..00000000 Binary files a/outputs/png/open_in_new_window_round.png and /dev/null differ diff --git a/outputs/png/open_in_new_window_sharp.png b/outputs/png/open_in_new_window_sharp.png deleted file mode 100644 index 56bbcea3..00000000 Binary files a/outputs/png/open_in_new_window_sharp.png and /dev/null differ diff --git a/outputs/png/open_new_off_round.png b/outputs/png/open_new_off_round.png deleted file mode 100644 index 861d6295..00000000 Binary files a/outputs/png/open_new_off_round.png and /dev/null differ diff --git a/outputs/png/open_new_off_sharp.png b/outputs/png/open_new_off_sharp.png deleted file mode 100644 index 861d6295..00000000 Binary files a/outputs/png/open_new_off_sharp.png and /dev/null differ diff --git a/outputs/png/page_height_round.png b/outputs/png/page_height_round.png deleted file mode 100644 index ac549098..00000000 Binary files a/outputs/png/page_height_round.png and /dev/null differ diff --git a/outputs/png/page_height_sharp.png b/outputs/png/page_height_sharp.png deleted file mode 100644 index ac549098..00000000 Binary files a/outputs/png/page_height_sharp.png and /dev/null differ diff --git a/outputs/png/page_rotate_round.png b/outputs/png/page_rotate_round.png deleted file mode 100644 index 8447e018..00000000 Binary files a/outputs/png/page_rotate_round.png and /dev/null differ diff --git a/outputs/png/page_rotate_sharp.png b/outputs/png/page_rotate_sharp.png deleted file mode 100644 index 8447e018..00000000 Binary files a/outputs/png/page_rotate_sharp.png and /dev/null differ diff --git a/outputs/png/page_width_round.png b/outputs/png/page_width_round.png deleted file mode 100644 index a1437788..00000000 Binary files a/outputs/png/page_width_round.png and /dev/null differ diff --git a/outputs/png/page_width_sharp.png b/outputs/png/page_width_sharp.png deleted file mode 100644 index a1437788..00000000 Binary files a/outputs/png/page_width_sharp.png and /dev/null differ diff --git a/outputs/png/palette_round.png b/outputs/png/palette_round.png deleted file mode 100644 index a91b64da..00000000 Binary files a/outputs/png/palette_round.png and /dev/null differ diff --git a/outputs/png/palette_sharp.png b/outputs/png/palette_sharp.png deleted file mode 100644 index a91b64da..00000000 Binary files a/outputs/png/palette_sharp.png and /dev/null differ diff --git a/outputs/png/partner_round.png b/outputs/png/partner_round.png deleted file mode 100644 index 045f412c..00000000 Binary files a/outputs/png/partner_round.png and /dev/null differ diff --git a/outputs/png/partner_sharp.png b/outputs/png/partner_sharp.png deleted file mode 100644 index 045f412c..00000000 Binary files a/outputs/png/partner_sharp.png and /dev/null differ diff --git a/outputs/png/pause_circle_round.png b/outputs/png/pause_circle_round.png deleted file mode 100644 index 7bba2974..00000000 Binary files a/outputs/png/pause_circle_round.png and /dev/null differ diff --git a/outputs/png/pause_circle_sharp.png b/outputs/png/pause_circle_sharp.png deleted file mode 100644 index e9363c64..00000000 Binary files a/outputs/png/pause_circle_sharp.png and /dev/null differ diff --git a/outputs/png/pause_round.png b/outputs/png/pause_round.png deleted file mode 100644 index 83671377..00000000 Binary files a/outputs/png/pause_round.png and /dev/null differ diff --git a/outputs/png/pause_sharp.png b/outputs/png/pause_sharp.png deleted file mode 100644 index 5fdc2ed7..00000000 Binary files a/outputs/png/pause_sharp.png and /dev/null differ diff --git a/outputs/png/pdf_attach_round.png b/outputs/png/pdf_attach_round.png deleted file mode 100644 index 36d85bf0..00000000 Binary files a/outputs/png/pdf_attach_round.png and /dev/null differ diff --git a/outputs/png/pdf_attach_sharp.png b/outputs/png/pdf_attach_sharp.png deleted file mode 100644 index dad61c9f..00000000 Binary files a/outputs/png/pdf_attach_sharp.png and /dev/null differ diff --git a/outputs/png/pending_round.png b/outputs/png/pending_round.png deleted file mode 100644 index f388b303..00000000 Binary files a/outputs/png/pending_round.png and /dev/null differ diff --git a/outputs/png/pending_sharp.png b/outputs/png/pending_sharp.png deleted file mode 100644 index f388b303..00000000 Binary files a/outputs/png/pending_sharp.png and /dev/null differ diff --git a/outputs/png/person_admin_round.png b/outputs/png/person_admin_round.png deleted file mode 100644 index 85c4ad45..00000000 Binary files a/outputs/png/person_admin_round.png and /dev/null differ diff --git a/outputs/png/person_admin_sharp.png b/outputs/png/person_admin_sharp.png deleted file mode 100644 index 85c4ad45..00000000 Binary files a/outputs/png/person_admin_sharp.png and /dev/null differ diff --git a/outputs/png/person_assign_round.png b/outputs/png/person_assign_round.png deleted file mode 100644 index a2cd0630..00000000 Binary files a/outputs/png/person_assign_round.png and /dev/null differ diff --git a/outputs/png/person_assign_sharp.png b/outputs/png/person_assign_sharp.png deleted file mode 100644 index a2cd0630..00000000 Binary files a/outputs/png/person_assign_sharp.png and /dev/null differ diff --git a/outputs/png/person_clock_round.png b/outputs/png/person_clock_round.png deleted file mode 100644 index ad67ac7b..00000000 Binary files a/outputs/png/person_clock_round.png and /dev/null differ diff --git a/outputs/png/person_clock_sharp.png b/outputs/png/person_clock_sharp.png deleted file mode 100644 index ad67ac7b..00000000 Binary files a/outputs/png/person_clock_sharp.png and /dev/null differ diff --git a/outputs/png/person_info_round.png b/outputs/png/person_info_round.png deleted file mode 100644 index 58d11bec..00000000 Binary files a/outputs/png/person_info_round.png and /dev/null differ diff --git a/outputs/png/person_info_sharp.png b/outputs/png/person_info_sharp.png deleted file mode 100644 index 58d11bec..00000000 Binary files a/outputs/png/person_info_sharp.png and /dev/null differ diff --git a/outputs/png/person_manager_round.png b/outputs/png/person_manager_round.png deleted file mode 100644 index cf76cdd9..00000000 Binary files a/outputs/png/person_manager_round.png and /dev/null differ diff --git a/outputs/png/person_manager_sharp.png b/outputs/png/person_manager_sharp.png deleted file mode 100644 index cf76cdd9..00000000 Binary files a/outputs/png/person_manager_sharp.png and /dev/null differ diff --git a/outputs/png/person_move_round.png b/outputs/png/person_move_round.png deleted file mode 100644 index 5c10604b..00000000 Binary files a/outputs/png/person_move_round.png and /dev/null differ diff --git a/outputs/png/person_move_sharp.png b/outputs/png/person_move_sharp.png deleted file mode 100644 index 5c10604b..00000000 Binary files a/outputs/png/person_move_sharp.png and /dev/null differ diff --git a/outputs/png/person_outline_round.png b/outputs/png/person_outline_round.png deleted file mode 100644 index e10992be..00000000 Binary files a/outputs/png/person_outline_round.png and /dev/null differ diff --git a/outputs/png/person_outline_sharp.png b/outputs/png/person_outline_sharp.png deleted file mode 100644 index 5d1b0bb4..00000000 Binary files a/outputs/png/person_outline_sharp.png and /dev/null differ diff --git a/outputs/png/person_round.png b/outputs/png/person_round.png deleted file mode 100644 index f39f6033..00000000 Binary files a/outputs/png/person_round.png and /dev/null differ diff --git a/outputs/png/person_search_round.png b/outputs/png/person_search_round.png deleted file mode 100644 index 9655c3a7..00000000 Binary files a/outputs/png/person_search_round.png and /dev/null differ diff --git a/outputs/png/person_search_sharp.png b/outputs/png/person_search_sharp.png deleted file mode 100644 index a5789988..00000000 Binary files a/outputs/png/person_search_sharp.png and /dev/null differ diff --git a/outputs/png/person_sharp.png b/outputs/png/person_sharp.png deleted file mode 100644 index 9bccb63f..00000000 Binary files a/outputs/png/person_sharp.png and /dev/null differ diff --git a/outputs/png/person_swap_round.png b/outputs/png/person_swap_round.png deleted file mode 100644 index da754c8f..00000000 Binary files a/outputs/png/person_swap_round.png and /dev/null differ diff --git a/outputs/png/person_swap_sharp.png b/outputs/png/person_swap_sharp.png deleted file mode 100644 index da754c8f..00000000 Binary files a/outputs/png/person_swap_sharp.png and /dev/null differ diff --git a/outputs/png/person_walk_round.png b/outputs/png/person_walk_round.png deleted file mode 100644 index 5f12540f..00000000 Binary files a/outputs/png/person_walk_round.png and /dev/null differ diff --git a/outputs/png/person_walk_sharp.png b/outputs/png/person_walk_sharp.png deleted file mode 100644 index 5f12540f..00000000 Binary files a/outputs/png/person_walk_sharp.png and /dev/null differ diff --git a/outputs/png/phone_android_round.png b/outputs/png/phone_android_round.png deleted file mode 100644 index 09650bca..00000000 Binary files a/outputs/png/phone_android_round.png and /dev/null differ diff --git a/outputs/png/phone_android_sharp.png b/outputs/png/phone_android_sharp.png deleted file mode 100644 index 4c31a108..00000000 Binary files a/outputs/png/phone_android_sharp.png and /dev/null differ diff --git a/outputs/png/phone_bluetooth_speaker_round.png b/outputs/png/phone_bluetooth_speaker_round.png deleted file mode 100644 index c22a7918..00000000 Binary files a/outputs/png/phone_bluetooth_speaker_round.png and /dev/null differ diff --git a/outputs/png/phone_bluetooth_speaker_sharp.png b/outputs/png/phone_bluetooth_speaker_sharp.png deleted file mode 100644 index 535f2cab..00000000 Binary files a/outputs/png/phone_bluetooth_speaker_sharp.png and /dev/null differ diff --git a/outputs/png/phone_in_talk_round.png b/outputs/png/phone_in_talk_round.png deleted file mode 100644 index b878655d..00000000 Binary files a/outputs/png/phone_in_talk_round.png and /dev/null differ diff --git a/outputs/png/phone_in_talk_sharp.png b/outputs/png/phone_in_talk_sharp.png deleted file mode 100644 index 7c456911..00000000 Binary files a/outputs/png/phone_in_talk_sharp.png and /dev/null differ diff --git a/outputs/png/phone_iphone_round.png b/outputs/png/phone_iphone_round.png deleted file mode 100644 index d7ba8e34..00000000 Binary files a/outputs/png/phone_iphone_round.png and /dev/null differ diff --git a/outputs/png/phone_iphone_sharp.png b/outputs/png/phone_iphone_sharp.png deleted file mode 100644 index a6ae498f..00000000 Binary files a/outputs/png/phone_iphone_sharp.png and /dev/null differ diff --git a/outputs/png/phone_round.png b/outputs/png/phone_round.png deleted file mode 100644 index cd2f2b1e..00000000 Binary files a/outputs/png/phone_round.png and /dev/null differ diff --git a/outputs/png/phone_sharp.png b/outputs/png/phone_sharp.png deleted file mode 100644 index 78a10ab1..00000000 Binary files a/outputs/png/phone_sharp.png and /dev/null differ diff --git a/outputs/png/phonelink_round.png b/outputs/png/phonelink_round.png deleted file mode 100644 index 25521a73..00000000 Binary files a/outputs/png/phonelink_round.png and /dev/null differ diff --git a/outputs/png/phonelink_sharp.png b/outputs/png/phonelink_sharp.png deleted file mode 100644 index 58aab0a2..00000000 Binary files a/outputs/png/phonelink_sharp.png and /dev/null differ diff --git a/outputs/png/phrase_round.png b/outputs/png/phrase_round.png deleted file mode 100644 index e57806a1..00000000 Binary files a/outputs/png/phrase_round.png and /dev/null differ diff --git a/outputs/png/phrase_sharp.png b/outputs/png/phrase_sharp.png deleted file mode 100644 index e57806a1..00000000 Binary files a/outputs/png/phrase_sharp.png and /dev/null differ diff --git a/outputs/png/pin_round.png b/outputs/png/pin_round.png deleted file mode 100644 index 35686e70..00000000 Binary files a/outputs/png/pin_round.png and /dev/null differ diff --git a/outputs/png/pin_sharp.png b/outputs/png/pin_sharp.png deleted file mode 100644 index e992b858..00000000 Binary files a/outputs/png/pin_sharp.png and /dev/null differ diff --git a/outputs/png/place_round.png b/outputs/png/place_round.png deleted file mode 100644 index 35686e70..00000000 Binary files a/outputs/png/place_round.png and /dev/null differ diff --git a/outputs/png/place_sharp.png b/outputs/png/place_sharp.png deleted file mode 100644 index e0355be9..00000000 Binary files a/outputs/png/place_sharp.png and /dev/null differ diff --git a/outputs/png/planogram_round.png b/outputs/png/planogram_round.png deleted file mode 100644 index e49dba4b..00000000 Binary files a/outputs/png/planogram_round.png and /dev/null differ diff --git a/outputs/png/planogram_sharp.png b/outputs/png/planogram_sharp.png deleted file mode 100644 index e49dba4b..00000000 Binary files a/outputs/png/planogram_sharp.png and /dev/null differ diff --git a/outputs/png/play_circle_round.png b/outputs/png/play_circle_round.png deleted file mode 100644 index e6fe69d3..00000000 Binary files a/outputs/png/play_circle_round.png and /dev/null differ diff --git a/outputs/png/play_circle_sharp.png b/outputs/png/play_circle_sharp.png deleted file mode 100644 index ad3d67d3..00000000 Binary files a/outputs/png/play_circle_sharp.png and /dev/null differ diff --git a/outputs/png/play_outline_round.png b/outputs/png/play_outline_round.png deleted file mode 100644 index babf0e6d..00000000 Binary files a/outputs/png/play_outline_round.png and /dev/null differ diff --git a/outputs/png/play_outline_sharp.png b/outputs/png/play_outline_sharp.png deleted file mode 100644 index 305057af..00000000 Binary files a/outputs/png/play_outline_sharp.png and /dev/null differ diff --git a/outputs/png/play_round.png b/outputs/png/play_round.png deleted file mode 100644 index 29b8be06..00000000 Binary files a/outputs/png/play_round.png and /dev/null differ diff --git a/outputs/png/play_sharp.png b/outputs/png/play_sharp.png deleted file mode 100644 index 2564b9bf..00000000 Binary files a/outputs/png/play_sharp.png and /dev/null differ diff --git a/outputs/png/png_attach_round.png b/outputs/png/png_attach_round.png deleted file mode 100644 index 24ed3402..00000000 Binary files a/outputs/png/png_attach_round.png and /dev/null differ diff --git a/outputs/png/png_attach_sharp.png b/outputs/png/png_attach_sharp.png deleted file mode 100644 index 2791a7d8..00000000 Binary files a/outputs/png/png_attach_sharp.png and /dev/null differ diff --git a/outputs/png/point_gift_round.png b/outputs/png/point_gift_round.png deleted file mode 100644 index 8f5fc45f..00000000 Binary files a/outputs/png/point_gift_round.png and /dev/null differ diff --git a/outputs/png/point_gift_sharp.png b/outputs/png/point_gift_sharp.png deleted file mode 100644 index 8f5fc45f..00000000 Binary files a/outputs/png/point_gift_sharp.png and /dev/null differ diff --git a/outputs/png/point_heart_round.png b/outputs/png/point_heart_round.png deleted file mode 100644 index 3439659e..00000000 Binary files a/outputs/png/point_heart_round.png and /dev/null differ diff --git a/outputs/png/point_heart_sharp.png b/outputs/png/point_heart_sharp.png deleted file mode 100644 index 3439659e..00000000 Binary files a/outputs/png/point_heart_sharp.png and /dev/null differ diff --git a/outputs/png/point_money_round.png b/outputs/png/point_money_round.png deleted file mode 100644 index 43fea964..00000000 Binary files a/outputs/png/point_money_round.png and /dev/null differ diff --git a/outputs/png/point_money_sharp.png b/outputs/png/point_money_sharp.png deleted file mode 100644 index 43fea964..00000000 Binary files a/outputs/png/point_money_sharp.png and /dev/null differ diff --git a/outputs/png/point_star_round.png b/outputs/png/point_star_round.png deleted file mode 100644 index ec9ca597..00000000 Binary files a/outputs/png/point_star_round.png and /dev/null differ diff --git a/outputs/png/point_star_sharp.png b/outputs/png/point_star_sharp.png deleted file mode 100644 index ec9ca597..00000000 Binary files a/outputs/png/point_star_sharp.png and /dev/null differ diff --git a/outputs/png/point_token_round.png b/outputs/png/point_token_round.png deleted file mode 100644 index de72f930..00000000 Binary files a/outputs/png/point_token_round.png and /dev/null differ diff --git a/outputs/png/point_token_sharp.png b/outputs/png/point_token_sharp.png deleted file mode 100644 index de72f930..00000000 Binary files a/outputs/png/point_token_sharp.png and /dev/null differ diff --git a/outputs/png/portrait_round.png b/outputs/png/portrait_round.png deleted file mode 100644 index 1c6265f0..00000000 Binary files a/outputs/png/portrait_round.png and /dev/null differ diff --git a/outputs/png/portrait_sharp.png b/outputs/png/portrait_sharp.png deleted file mode 100644 index 4b151be5..00000000 Binary files a/outputs/png/portrait_sharp.png and /dev/null differ diff --git a/outputs/png/ppt_attach_round.png b/outputs/png/ppt_attach_round.png deleted file mode 100644 index c4de4244..00000000 Binary files a/outputs/png/ppt_attach_round.png and /dev/null differ diff --git a/outputs/png/ppt_attach_sharp.png b/outputs/png/ppt_attach_sharp.png deleted file mode 100644 index 37a6cad8..00000000 Binary files a/outputs/png/ppt_attach_sharp.png and /dev/null differ diff --git a/outputs/png/price_round.png b/outputs/png/price_round.png deleted file mode 100644 index 15ab0bc7..00000000 Binary files a/outputs/png/price_round.png and /dev/null differ diff --git a/outputs/png/price_sharp.png b/outputs/png/price_sharp.png deleted file mode 100644 index 4efdd5a3..00000000 Binary files a/outputs/png/price_sharp.png and /dev/null differ diff --git a/outputs/png/printer_round.png b/outputs/png/printer_round.png deleted file mode 100644 index fa4f17af..00000000 Binary files a/outputs/png/printer_round.png and /dev/null differ diff --git a/outputs/png/printer_sharp.png b/outputs/png/printer_sharp.png deleted file mode 100644 index c4ae7af3..00000000 Binary files a/outputs/png/printer_sharp.png and /dev/null differ diff --git a/outputs/png/priority_round.png b/outputs/png/priority_round.png deleted file mode 100644 index 5ae7779c..00000000 Binary files a/outputs/png/priority_round.png and /dev/null differ diff --git a/outputs/png/priority_sharp.png b/outputs/png/priority_sharp.png deleted file mode 100644 index abeb1497..00000000 Binary files a/outputs/png/priority_sharp.png and /dev/null differ diff --git a/outputs/png/pro_round.png b/outputs/png/pro_round.png deleted file mode 100644 index a52a1572..00000000 Binary files a/outputs/png/pro_round.png and /dev/null differ diff --git a/outputs/png/pro_sharp.png b/outputs/png/pro_sharp.png deleted file mode 100644 index a52a1572..00000000 Binary files a/outputs/png/pro_sharp.png and /dev/null differ diff --git a/outputs/png/productivity_apps_round.png b/outputs/png/productivity_apps_round.png deleted file mode 100644 index f4e0e1e4..00000000 Binary files a/outputs/png/productivity_apps_round.png and /dev/null differ diff --git a/outputs/png/productivity_apps_sharp.png b/outputs/png/productivity_apps_sharp.png deleted file mode 100644 index f4e0e1e4..00000000 Binary files a/outputs/png/productivity_apps_sharp.png and /dev/null differ diff --git a/outputs/png/ptt_round.png b/outputs/png/ptt_round.png deleted file mode 100644 index 1dd4b6c9..00000000 Binary files a/outputs/png/ptt_round.png and /dev/null differ diff --git a/outputs/png/ptt_sharp.png b/outputs/png/ptt_sharp.png deleted file mode 100644 index 1dd4b6c9..00000000 Binary files a/outputs/png/ptt_sharp.png and /dev/null differ diff --git a/outputs/png/publish_round.png b/outputs/png/publish_round.png deleted file mode 100644 index bc9ba453..00000000 Binary files a/outputs/png/publish_round.png and /dev/null differ diff --git a/outputs/png/publish_sharp.png b/outputs/png/publish_sharp.png deleted file mode 100644 index bc9ba453..00000000 Binary files a/outputs/png/publish_sharp.png and /dev/null differ diff --git a/outputs/png/push_pin_round.png b/outputs/png/push_pin_round.png deleted file mode 100644 index 0901d70a..00000000 Binary files a/outputs/png/push_pin_round.png and /dev/null differ diff --git a/outputs/png/push_pin_sharp.png b/outputs/png/push_pin_sharp.png deleted file mode 100644 index a319ec52..00000000 Binary files a/outputs/png/push_pin_sharp.png and /dev/null differ diff --git a/outputs/png/qr_code_round.png b/outputs/png/qr_code_round.png deleted file mode 100644 index 6e84c233..00000000 Binary files a/outputs/png/qr_code_round.png and /dev/null differ diff --git a/outputs/png/qr_code_sharp.png b/outputs/png/qr_code_sharp.png deleted file mode 100644 index 9f608232..00000000 Binary files a/outputs/png/qr_code_sharp.png and /dev/null differ diff --git a/outputs/png/queue_round.png b/outputs/png/queue_round.png deleted file mode 100644 index d54abaac..00000000 Binary files a/outputs/png/queue_round.png and /dev/null differ diff --git a/outputs/png/queue_sharp.png b/outputs/png/queue_sharp.png deleted file mode 100644 index d54abaac..00000000 Binary files a/outputs/png/queue_sharp.png and /dev/null differ diff --git a/outputs/png/radio_button_checked_round.png b/outputs/png/radio_button_checked_round.png deleted file mode 100644 index 885007d5..00000000 Binary files a/outputs/png/radio_button_checked_round.png and /dev/null differ diff --git a/outputs/png/radio_button_checked_sharp.png b/outputs/png/radio_button_checked_sharp.png deleted file mode 100644 index 885007d5..00000000 Binary files a/outputs/png/radio_button_checked_sharp.png and /dev/null differ diff --git a/outputs/png/radio_button_unchecked_round.png b/outputs/png/radio_button_unchecked_round.png deleted file mode 100644 index 3c83c8d7..00000000 Binary files a/outputs/png/radio_button_unchecked_round.png and /dev/null differ diff --git a/outputs/png/radio_button_unchecked_sharp.png b/outputs/png/radio_button_unchecked_sharp.png deleted file mode 100644 index 3c83c8d7..00000000 Binary files a/outputs/png/radio_button_unchecked_sharp.png and /dev/null differ diff --git a/outputs/png/react_add_round.png b/outputs/png/react_add_round.png deleted file mode 100644 index 8b13c1c5..00000000 Binary files a/outputs/png/react_add_round.png and /dev/null differ diff --git a/outputs/png/react_add_sharp.png b/outputs/png/react_add_sharp.png deleted file mode 100644 index 8b13c1c5..00000000 Binary files a/outputs/png/react_add_sharp.png and /dev/null differ diff --git a/outputs/png/react_thumbsup_round.png b/outputs/png/react_thumbsup_round.png deleted file mode 100644 index b56548ee..00000000 Binary files a/outputs/png/react_thumbsup_round.png and /dev/null differ diff --git a/outputs/png/react_thumbsup_sharp.png b/outputs/png/react_thumbsup_sharp.png deleted file mode 100644 index b56548ee..00000000 Binary files a/outputs/png/react_thumbsup_sharp.png and /dev/null differ diff --git a/outputs/png/recall_round.png b/outputs/png/recall_round.png deleted file mode 100644 index a7805ec6..00000000 Binary files a/outputs/png/recall_round.png and /dev/null differ diff --git a/outputs/png/recall_sharp.png b/outputs/png/recall_sharp.png deleted file mode 100644 index a7805ec6..00000000 Binary files a/outputs/png/recall_sharp.png and /dev/null differ diff --git a/outputs/png/receipt_round.png b/outputs/png/receipt_round.png deleted file mode 100644 index ae3cbb47..00000000 Binary files a/outputs/png/receipt_round.png and /dev/null differ diff --git a/outputs/png/receipt_sharp.png b/outputs/png/receipt_sharp.png deleted file mode 100644 index ae3cbb47..00000000 Binary files a/outputs/png/receipt_sharp.png and /dev/null differ diff --git a/outputs/png/recording_round.png b/outputs/png/recording_round.png deleted file mode 100644 index 2700b533..00000000 Binary files a/outputs/png/recording_round.png and /dev/null differ diff --git a/outputs/png/recording_sharp.png b/outputs/png/recording_sharp.png deleted file mode 100644 index 2700b533..00000000 Binary files a/outputs/png/recording_sharp.png and /dev/null differ diff --git a/outputs/png/redo_round.png b/outputs/png/redo_round.png deleted file mode 100644 index 604a7090..00000000 Binary files a/outputs/png/redo_round.png and /dev/null differ diff --git a/outputs/png/redo_sharp.png b/outputs/png/redo_sharp.png deleted file mode 100644 index 1e950489..00000000 Binary files a/outputs/png/redo_sharp.png and /dev/null differ diff --git a/outputs/png/refresh_round.png b/outputs/png/refresh_round.png deleted file mode 100644 index 8f65f00d..00000000 Binary files a/outputs/png/refresh_round.png and /dev/null differ diff --git a/outputs/png/refresh_sharp.png b/outputs/png/refresh_sharp.png deleted file mode 100644 index 72a08a02..00000000 Binary files a/outputs/png/refresh_sharp.png and /dev/null differ diff --git a/outputs/png/remove_box_round.png b/outputs/png/remove_box_round.png deleted file mode 100644 index 8a941b7b..00000000 Binary files a/outputs/png/remove_box_round.png and /dev/null differ diff --git a/outputs/png/remove_box_sharp.png b/outputs/png/remove_box_sharp.png deleted file mode 100644 index ece77167..00000000 Binary files a/outputs/png/remove_box_sharp.png and /dev/null differ diff --git a/outputs/png/remove_circle_outline_round.png b/outputs/png/remove_circle_outline_round.png deleted file mode 100644 index f4a624ed..00000000 Binary files a/outputs/png/remove_circle_outline_round.png and /dev/null differ diff --git a/outputs/png/remove_circle_outline_sharp.png b/outputs/png/remove_circle_outline_sharp.png deleted file mode 100644 index b08f697a..00000000 Binary files a/outputs/png/remove_circle_outline_sharp.png and /dev/null differ diff --git a/outputs/png/remove_circle_round.png b/outputs/png/remove_circle_round.png deleted file mode 100644 index 1e4e371a..00000000 Binary files a/outputs/png/remove_circle_round.png and /dev/null differ diff --git a/outputs/png/remove_circle_sharp.png b/outputs/png/remove_circle_sharp.png deleted file mode 100644 index 1dbc8582..00000000 Binary files a/outputs/png/remove_circle_sharp.png and /dev/null differ diff --git a/outputs/png/remove_group_round.png b/outputs/png/remove_group_round.png deleted file mode 100644 index 17c154da..00000000 Binary files a/outputs/png/remove_group_round.png and /dev/null differ diff --git a/outputs/png/remove_group_sharp.png b/outputs/png/remove_group_sharp.png deleted file mode 100644 index 9dd1a5e7..00000000 Binary files a/outputs/png/remove_group_sharp.png and /dev/null differ diff --git a/outputs/png/remove_person_round.png b/outputs/png/remove_person_round.png deleted file mode 100644 index 0fb5cf95..00000000 Binary files a/outputs/png/remove_person_round.png and /dev/null differ diff --git a/outputs/png/remove_person_sharp.png b/outputs/png/remove_person_sharp.png deleted file mode 100644 index 265e9274..00000000 Binary files a/outputs/png/remove_person_sharp.png and /dev/null differ diff --git a/outputs/png/remove_round.png b/outputs/png/remove_round.png deleted file mode 100644 index ebe3f1b4..00000000 Binary files a/outputs/png/remove_round.png and /dev/null differ diff --git a/outputs/png/remove_sharp.png b/outputs/png/remove_sharp.png deleted file mode 100644 index cdfb3e79..00000000 Binary files a/outputs/png/remove_sharp.png and /dev/null differ diff --git a/outputs/png/renew_round.png b/outputs/png/renew_round.png deleted file mode 100644 index 9ad3c3b4..00000000 Binary files a/outputs/png/renew_round.png and /dev/null differ diff --git a/outputs/png/renew_sharp.png b/outputs/png/renew_sharp.png deleted file mode 100644 index f2d602b1..00000000 Binary files a/outputs/png/renew_sharp.png and /dev/null differ diff --git a/outputs/png/reorder_round.png b/outputs/png/reorder_round.png deleted file mode 100644 index a49fd172..00000000 Binary files a/outputs/png/reorder_round.png and /dev/null differ diff --git a/outputs/png/reorder_sharp.png b/outputs/png/reorder_sharp.png deleted file mode 100644 index a49fd172..00000000 Binary files a/outputs/png/reorder_sharp.png and /dev/null differ diff --git a/outputs/png/repeat_round.png b/outputs/png/repeat_round.png deleted file mode 100644 index f10e731b..00000000 Binary files a/outputs/png/repeat_round.png and /dev/null differ diff --git a/outputs/png/repeat_sharp.png b/outputs/png/repeat_sharp.png deleted file mode 100644 index f10e731b..00000000 Binary files a/outputs/png/repeat_sharp.png and /dev/null differ diff --git a/outputs/png/replay_round.png b/outputs/png/replay_round.png deleted file mode 100644 index a148fbad..00000000 Binary files a/outputs/png/replay_round.png and /dev/null differ diff --git a/outputs/png/replay_sharp.png b/outputs/png/replay_sharp.png deleted file mode 100644 index f42ab1c6..00000000 Binary files a/outputs/png/replay_sharp.png and /dev/null differ diff --git a/outputs/png/reply_round.png b/outputs/png/reply_round.png deleted file mode 100644 index 876a17a5..00000000 Binary files a/outputs/png/reply_round.png and /dev/null differ diff --git a/outputs/png/reply_sharp.png b/outputs/png/reply_sharp.png deleted file mode 100644 index ae729585..00000000 Binary files a/outputs/png/reply_sharp.png and /dev/null differ diff --git a/outputs/png/report_round.png b/outputs/png/report_round.png deleted file mode 100644 index 4c6e55a4..00000000 Binary files a/outputs/png/report_round.png and /dev/null differ diff --git a/outputs/png/report_sharp.png b/outputs/png/report_sharp.png deleted file mode 100644 index 4c6e55a4..00000000 Binary files a/outputs/png/report_sharp.png and /dev/null differ diff --git a/outputs/png/restart_alt_round.png b/outputs/png/restart_alt_round.png deleted file mode 100644 index b207021c..00000000 Binary files a/outputs/png/restart_alt_round.png and /dev/null differ diff --git a/outputs/png/restart_alt_sharp.png b/outputs/png/restart_alt_sharp.png deleted file mode 100644 index 545c7883..00000000 Binary files a/outputs/png/restart_alt_sharp.png and /dev/null differ diff --git a/outputs/png/review_round.png b/outputs/png/review_round.png deleted file mode 100644 index 27a5b8b2..00000000 Binary files a/outputs/png/review_round.png and /dev/null differ diff --git a/outputs/png/review_sharp.png b/outputs/png/review_sharp.png deleted file mode 100644 index 27a5b8b2..00000000 Binary files a/outputs/png/review_sharp.png and /dev/null differ diff --git a/outputs/png/road_map_round.png b/outputs/png/road_map_round.png deleted file mode 100644 index 203babdb..00000000 Binary files a/outputs/png/road_map_round.png and /dev/null differ diff --git a/outputs/png/road_map_sharp.png b/outputs/png/road_map_sharp.png deleted file mode 100644 index 203babdb..00000000 Binary files a/outputs/png/road_map_sharp.png and /dev/null differ diff --git a/outputs/png/rotate_left_round.png b/outputs/png/rotate_left_round.png deleted file mode 100644 index bdd97b10..00000000 Binary files a/outputs/png/rotate_left_round.png and /dev/null differ diff --git a/outputs/png/rotate_left_sharp.png b/outputs/png/rotate_left_sharp.png deleted file mode 100644 index 08874c65..00000000 Binary files a/outputs/png/rotate_left_sharp.png and /dev/null differ diff --git a/outputs/png/rotate_right_round.png b/outputs/png/rotate_right_round.png deleted file mode 100644 index 2051daf2..00000000 Binary files a/outputs/png/rotate_right_round.png and /dev/null differ diff --git a/outputs/png/rotate_right_sharp.png b/outputs/png/rotate_right_sharp.png deleted file mode 100644 index 6edbddde..00000000 Binary files a/outputs/png/rotate_right_sharp.png and /dev/null differ diff --git a/outputs/png/rss_feed_round.png b/outputs/png/rss_feed_round.png deleted file mode 100644 index 525b4a7c..00000000 Binary files a/outputs/png/rss_feed_round.png and /dev/null differ diff --git a/outputs/png/rss_feed_sharp.png b/outputs/png/rss_feed_sharp.png deleted file mode 100644 index 254cfea5..00000000 Binary files a/outputs/png/rss_feed_sharp.png and /dev/null differ diff --git a/outputs/png/rules_round.png b/outputs/png/rules_round.png deleted file mode 100644 index 549536d4..00000000 Binary files a/outputs/png/rules_round.png and /dev/null differ diff --git a/outputs/png/rules_sharp.png b/outputs/png/rules_sharp.png deleted file mode 100644 index 549536d4..00000000 Binary files a/outputs/png/rules_sharp.png and /dev/null differ diff --git a/outputs/png/sad_round.png b/outputs/png/sad_round.png deleted file mode 100644 index b886240a..00000000 Binary files a/outputs/png/sad_round.png and /dev/null differ diff --git a/outputs/png/sad_sharp.png b/outputs/png/sad_sharp.png deleted file mode 100644 index 85c2f814..00000000 Binary files a/outputs/png/sad_sharp.png and /dev/null differ diff --git a/outputs/png/satisfied_round.png b/outputs/png/satisfied_round.png deleted file mode 100644 index 7a5b0c11..00000000 Binary files a/outputs/png/satisfied_round.png and /dev/null differ diff --git a/outputs/png/satisfied_sharp.png b/outputs/png/satisfied_sharp.png deleted file mode 100644 index b16b5237..00000000 Binary files a/outputs/png/satisfied_sharp.png and /dev/null differ diff --git a/outputs/png/save_alt_round.png b/outputs/png/save_alt_round.png deleted file mode 100644 index 98cfe969..00000000 Binary files a/outputs/png/save_alt_round.png and /dev/null differ diff --git a/outputs/png/save_alt_sharp.png b/outputs/png/save_alt_sharp.png deleted file mode 100644 index c3fe8b5f..00000000 Binary files a/outputs/png/save_alt_sharp.png and /dev/null differ diff --git a/outputs/png/save_content_round.png b/outputs/png/save_content_round.png deleted file mode 100644 index 7c5e432e..00000000 Binary files a/outputs/png/save_content_round.png and /dev/null differ diff --git a/outputs/png/save_content_sharp.png b/outputs/png/save_content_sharp.png deleted file mode 100644 index 7c5e432e..00000000 Binary files a/outputs/png/save_content_sharp.png and /dev/null differ diff --git a/outputs/png/save_round.png b/outputs/png/save_round.png deleted file mode 100644 index 7c5e432e..00000000 Binary files a/outputs/png/save_round.png and /dev/null differ diff --git a/outputs/png/save_sharp.png b/outputs/png/save_sharp.png deleted file mode 100644 index 7c5e432e..00000000 Binary files a/outputs/png/save_sharp.png and /dev/null differ diff --git a/outputs/png/scan_rate_round.png b/outputs/png/scan_rate_round.png deleted file mode 100644 index b3e5ca6b..00000000 Binary files a/outputs/png/scan_rate_round.png and /dev/null differ diff --git a/outputs/png/scan_rate_sharp.png b/outputs/png/scan_rate_sharp.png deleted file mode 100644 index b3e5ca6b..00000000 Binary files a/outputs/png/scan_rate_sharp.png and /dev/null differ diff --git a/outputs/png/scanner_round.png b/outputs/png/scanner_round.png deleted file mode 100644 index e89db2cb..00000000 Binary files a/outputs/png/scanner_round.png and /dev/null differ diff --git a/outputs/png/scanner_sharp.png b/outputs/png/scanner_sharp.png deleted file mode 100644 index 69011104..00000000 Binary files a/outputs/png/scanner_sharp.png and /dev/null differ diff --git a/outputs/png/schedule_round.png b/outputs/png/schedule_round.png deleted file mode 100644 index 285a619b..00000000 Binary files a/outputs/png/schedule_round.png and /dev/null differ diff --git a/outputs/png/schedule_sharp.png b/outputs/png/schedule_sharp.png deleted file mode 100644 index 285a619b..00000000 Binary files a/outputs/png/schedule_sharp.png and /dev/null differ diff --git a/outputs/png/school_round.png b/outputs/png/school_round.png deleted file mode 100644 index c3a6bbd7..00000000 Binary files a/outputs/png/school_round.png and /dev/null differ diff --git a/outputs/png/school_sharp.png b/outputs/png/school_sharp.png deleted file mode 100644 index c3a6bbd7..00000000 Binary files a/outputs/png/school_sharp.png and /dev/null differ diff --git a/outputs/png/screen_rotation_round.png b/outputs/png/screen_rotation_round.png deleted file mode 100644 index 1dc53626..00000000 Binary files a/outputs/png/screen_rotation_round.png and /dev/null differ diff --git a/outputs/png/screen_rotation_sharp.png b/outputs/png/screen_rotation_sharp.png deleted file mode 100644 index da3ab4d7..00000000 Binary files a/outputs/png/screen_rotation_sharp.png and /dev/null differ diff --git a/outputs/png/sd_card_round.png b/outputs/png/sd_card_round.png deleted file mode 100644 index 13f17d96..00000000 Binary files a/outputs/png/sd_card_round.png and /dev/null differ diff --git a/outputs/png/sd_card_sharp.png b/outputs/png/sd_card_sharp.png deleted file mode 100644 index f35f1438..00000000 Binary files a/outputs/png/sd_card_sharp.png and /dev/null differ diff --git a/outputs/png/search_round.png b/outputs/png/search_round.png deleted file mode 100644 index 982a05e9..00000000 Binary files a/outputs/png/search_round.png and /dev/null differ diff --git a/outputs/png/search_sharp.png b/outputs/png/search_sharp.png deleted file mode 100644 index 40dd9ee3..00000000 Binary files a/outputs/png/search_sharp.png and /dev/null differ diff --git a/outputs/png/security_check_round.png b/outputs/png/security_check_round.png deleted file mode 100644 index 6fc5b908..00000000 Binary files a/outputs/png/security_check_round.png and /dev/null differ diff --git a/outputs/png/security_check_sharp.png b/outputs/png/security_check_sharp.png deleted file mode 100644 index 2ccb27af..00000000 Binary files a/outputs/png/security_check_sharp.png and /dev/null differ diff --git a/outputs/png/security_round.png b/outputs/png/security_round.png deleted file mode 100644 index c1457819..00000000 Binary files a/outputs/png/security_round.png and /dev/null differ diff --git a/outputs/png/security_sharp.png b/outputs/png/security_sharp.png deleted file mode 100644 index a79aff66..00000000 Binary files a/outputs/png/security_sharp.png and /dev/null differ diff --git a/outputs/png/send_round.png b/outputs/png/send_round.png deleted file mode 100644 index cf5d0d04..00000000 Binary files a/outputs/png/send_round.png and /dev/null differ diff --git a/outputs/png/send_sharp.png b/outputs/png/send_sharp.png deleted file mode 100644 index 64384e3e..00000000 Binary files a/outputs/png/send_sharp.png and /dev/null differ diff --git a/outputs/png/settings_round.png b/outputs/png/settings_round.png deleted file mode 100644 index b2f6d98a..00000000 Binary files a/outputs/png/settings_round.png and /dev/null differ diff --git a/outputs/png/settings_sharp.png b/outputs/png/settings_sharp.png deleted file mode 100644 index a8b54012..00000000 Binary files a/outputs/png/settings_sharp.png and /dev/null differ diff --git a/outputs/png/shape_recognition_round.png b/outputs/png/shape_recognition_round.png deleted file mode 100644 index f8fac1ec..00000000 Binary files a/outputs/png/shape_recognition_round.png and /dev/null differ diff --git a/outputs/png/shape_recognition_sharp.png b/outputs/png/shape_recognition_sharp.png deleted file mode 100644 index f8fac1ec..00000000 Binary files a/outputs/png/shape_recognition_sharp.png and /dev/null differ diff --git a/outputs/png/share_round.png b/outputs/png/share_round.png deleted file mode 100644 index 7657e93c..00000000 Binary files a/outputs/png/share_round.png and /dev/null differ diff --git a/outputs/png/share_sharp.png b/outputs/png/share_sharp.png deleted file mode 100644 index 7657e93c..00000000 Binary files a/outputs/png/share_sharp.png and /dev/null differ diff --git a/outputs/png/shared_folder_round.png b/outputs/png/shared_folder_round.png deleted file mode 100644 index a4f789fd..00000000 Binary files a/outputs/png/shared_folder_round.png and /dev/null differ diff --git a/outputs/png/shared_folder_sharp.png b/outputs/png/shared_folder_sharp.png deleted file mode 100644 index ac967d1c..00000000 Binary files a/outputs/png/shared_folder_sharp.png and /dev/null differ diff --git a/outputs/png/ship_round.png b/outputs/png/ship_round.png deleted file mode 100644 index 219d3883..00000000 Binary files a/outputs/png/ship_round.png and /dev/null differ diff --git a/outputs/png/ship_sharp.png b/outputs/png/ship_sharp.png deleted file mode 100644 index f15598e9..00000000 Binary files a/outputs/png/ship_sharp.png and /dev/null differ diff --git a/outputs/png/sim_card_round.png b/outputs/png/sim_card_round.png deleted file mode 100644 index e52a01b6..00000000 Binary files a/outputs/png/sim_card_round.png and /dev/null differ diff --git a/outputs/png/sim_card_sharp.png b/outputs/png/sim_card_sharp.png deleted file mode 100644 index e52a01b6..00000000 Binary files a/outputs/png/sim_card_sharp.png and /dev/null differ diff --git a/outputs/png/skip_next_round.png b/outputs/png/skip_next_round.png deleted file mode 100644 index 26b3bdaa..00000000 Binary files a/outputs/png/skip_next_round.png and /dev/null differ diff --git a/outputs/png/skip_next_sharp.png b/outputs/png/skip_next_sharp.png deleted file mode 100644 index 2e19901f..00000000 Binary files a/outputs/png/skip_next_sharp.png and /dev/null differ diff --git a/outputs/png/skip_previous_round.png b/outputs/png/skip_previous_round.png deleted file mode 100644 index b3205aa3..00000000 Binary files a/outputs/png/skip_previous_round.png and /dev/null differ diff --git a/outputs/png/skip_previous_sharp.png b/outputs/png/skip_previous_sharp.png deleted file mode 100644 index e6e0fbcf..00000000 Binary files a/outputs/png/skip_previous_sharp.png and /dev/null differ diff --git a/outputs/png/slide_show_round.png b/outputs/png/slide_show_round.png deleted file mode 100644 index 9dfc2ec6..00000000 Binary files a/outputs/png/slide_show_round.png and /dev/null differ diff --git a/outputs/png/slide_show_sharp.png b/outputs/png/slide_show_sharp.png deleted file mode 100644 index 9c99c226..00000000 Binary files a/outputs/png/slide_show_sharp.png and /dev/null differ diff --git a/outputs/png/smart_phone_round.png b/outputs/png/smart_phone_round.png deleted file mode 100644 index ef24e196..00000000 Binary files a/outputs/png/smart_phone_round.png and /dev/null differ diff --git a/outputs/png/smart_phone_sharp.png b/outputs/png/smart_phone_sharp.png deleted file mode 100644 index e05599c1..00000000 Binary files a/outputs/png/smart_phone_sharp.png and /dev/null differ diff --git a/outputs/png/sms_round.png b/outputs/png/sms_round.png deleted file mode 100644 index 51d50d20..00000000 Binary files a/outputs/png/sms_round.png and /dev/null differ diff --git a/outputs/png/sms_sharp.png b/outputs/png/sms_sharp.png deleted file mode 100644 index b164f36e..00000000 Binary files a/outputs/png/sms_sharp.png and /dev/null differ diff --git a/outputs/png/snooze_round.png b/outputs/png/snooze_round.png deleted file mode 100644 index f6f6ca21..00000000 Binary files a/outputs/png/snooze_round.png and /dev/null differ diff --git a/outputs/png/snooze_sharp.png b/outputs/png/snooze_sharp.png deleted file mode 100644 index f6f6ca21..00000000 Binary files a/outputs/png/snooze_sharp.png and /dev/null differ diff --git a/outputs/png/solutions_round.png b/outputs/png/solutions_round.png deleted file mode 100644 index fff60409..00000000 Binary files a/outputs/png/solutions_round.png and /dev/null differ diff --git a/outputs/png/solutions_sharp.png b/outputs/png/solutions_sharp.png deleted file mode 100644 index fff60409..00000000 Binary files a/outputs/png/solutions_sharp.png and /dev/null differ diff --git a/outputs/png/sort_content_round.png b/outputs/png/sort_content_round.png deleted file mode 100644 index db73c960..00000000 Binary files a/outputs/png/sort_content_round.png and /dev/null differ diff --git a/outputs/png/sort_content_sharp.png b/outputs/png/sort_content_sharp.png deleted file mode 100644 index db73c960..00000000 Binary files a/outputs/png/sort_content_sharp.png and /dev/null differ diff --git a/outputs/png/sort_round.png b/outputs/png/sort_round.png deleted file mode 100644 index 1372f5cf..00000000 Binary files a/outputs/png/sort_round.png and /dev/null differ diff --git a/outputs/png/sort_sharp.png b/outputs/png/sort_sharp.png deleted file mode 100644 index 1372f5cf..00000000 Binary files a/outputs/png/sort_sharp.png and /dev/null differ diff --git a/outputs/png/speaker_round.png b/outputs/png/speaker_round.png deleted file mode 100644 index 04b6df7e..00000000 Binary files a/outputs/png/speaker_round.png and /dev/null differ diff --git a/outputs/png/speaker_sharp.png b/outputs/png/speaker_sharp.png deleted file mode 100644 index c762afd5..00000000 Binary files a/outputs/png/speaker_sharp.png and /dev/null differ diff --git a/outputs/png/star_half_round.png b/outputs/png/star_half_round.png deleted file mode 100644 index b14b517c..00000000 Binary files a/outputs/png/star_half_round.png and /dev/null differ diff --git a/outputs/png/star_half_sharp.png b/outputs/png/star_half_sharp.png deleted file mode 100644 index 099a343c..00000000 Binary files a/outputs/png/star_half_sharp.png and /dev/null differ diff --git a/outputs/png/star_outline_round.png b/outputs/png/star_outline_round.png deleted file mode 100644 index 72bd0d7f..00000000 Binary files a/outputs/png/star_outline_round.png and /dev/null differ diff --git a/outputs/png/star_outline_sharp.png b/outputs/png/star_outline_sharp.png deleted file mode 100644 index 326b3b7c..00000000 Binary files a/outputs/png/star_outline_sharp.png and /dev/null differ diff --git a/outputs/png/star_round.png b/outputs/png/star_round.png deleted file mode 100644 index f7db684c..00000000 Binary files a/outputs/png/star_round.png and /dev/null differ diff --git a/outputs/png/star_sharp.png b/outputs/png/star_sharp.png deleted file mode 100644 index 599f66ba..00000000 Binary files a/outputs/png/star_sharp.png and /dev/null differ diff --git a/outputs/png/steps_round.png b/outputs/png/steps_round.png deleted file mode 100644 index 87914fc1..00000000 Binary files a/outputs/png/steps_round.png and /dev/null differ diff --git a/outputs/png/steps_sharp.png b/outputs/png/steps_sharp.png deleted file mode 100644 index 87914fc1..00000000 Binary files a/outputs/png/steps_sharp.png and /dev/null differ diff --git a/outputs/png/sticker_round.png b/outputs/png/sticker_round.png deleted file mode 100644 index 76cc6c70..00000000 Binary files a/outputs/png/sticker_round.png and /dev/null differ diff --git a/outputs/png/sticker_sharp.png b/outputs/png/sticker_sharp.png deleted file mode 100644 index 76cc6c70..00000000 Binary files a/outputs/png/sticker_sharp.png and /dev/null differ diff --git a/outputs/png/stop_circle_round.png b/outputs/png/stop_circle_round.png deleted file mode 100644 index 6adb73c2..00000000 Binary files a/outputs/png/stop_circle_round.png and /dev/null differ diff --git a/outputs/png/stop_circle_sharp.png b/outputs/png/stop_circle_sharp.png deleted file mode 100644 index e2b18de5..00000000 Binary files a/outputs/png/stop_circle_sharp.png and /dev/null differ diff --git a/outputs/png/stop_round.png b/outputs/png/stop_round.png deleted file mode 100644 index 4fd3e266..00000000 Binary files a/outputs/png/stop_round.png and /dev/null differ diff --git a/outputs/png/stop_sharp.png b/outputs/png/stop_sharp.png deleted file mode 100644 index 2e37cfa8..00000000 Binary files a/outputs/png/stop_sharp.png and /dev/null differ diff --git a/outputs/png/store_release_round.png b/outputs/png/store_release_round.png deleted file mode 100644 index 5fb6d766..00000000 Binary files a/outputs/png/store_release_round.png and /dev/null differ diff --git a/outputs/png/store_release_sharp.png b/outputs/png/store_release_sharp.png deleted file mode 100644 index 5fb6d766..00000000 Binary files a/outputs/png/store_release_sharp.png and /dev/null differ diff --git a/outputs/png/store_round.png b/outputs/png/store_round.png deleted file mode 100644 index 133113bb..00000000 Binary files a/outputs/png/store_round.png and /dev/null differ diff --git a/outputs/png/store_sharp.png b/outputs/png/store_sharp.png deleted file mode 100644 index 133113bb..00000000 Binary files a/outputs/png/store_sharp.png and /dev/null differ diff --git a/outputs/png/store_swap_round.png b/outputs/png/store_swap_round.png deleted file mode 100644 index c20dd6b0..00000000 Binary files a/outputs/png/store_swap_round.png and /dev/null differ diff --git a/outputs/png/store_swap_sharp.png b/outputs/png/store_swap_sharp.png deleted file mode 100644 index c20dd6b0..00000000 Binary files a/outputs/png/store_swap_sharp.png and /dev/null differ diff --git a/outputs/png/store_transfer_round.png b/outputs/png/store_transfer_round.png deleted file mode 100644 index 5d68c9f6..00000000 Binary files a/outputs/png/store_transfer_round.png and /dev/null differ diff --git a/outputs/png/store_transfer_sharp.png b/outputs/png/store_transfer_sharp.png deleted file mode 100644 index 5d68c9f6..00000000 Binary files a/outputs/png/store_transfer_sharp.png and /dev/null differ diff --git a/outputs/png/straighten_round.png b/outputs/png/straighten_round.png deleted file mode 100644 index a8432f32..00000000 Binary files a/outputs/png/straighten_round.png and /dev/null differ diff --git a/outputs/png/straighten_sharp.png b/outputs/png/straighten_sharp.png deleted file mode 100644 index 89929b5c..00000000 Binary files a/outputs/png/straighten_sharp.png and /dev/null differ diff --git a/outputs/png/strategy_round.png b/outputs/png/strategy_round.png deleted file mode 100644 index 16fdb635..00000000 Binary files a/outputs/png/strategy_round.png and /dev/null differ diff --git a/outputs/png/strategy_sharp.png b/outputs/png/strategy_sharp.png deleted file mode 100644 index 16fdb635..00000000 Binary files a/outputs/png/strategy_sharp.png and /dev/null differ diff --git a/outputs/png/strikethrough_round.png b/outputs/png/strikethrough_round.png deleted file mode 100644 index 0116f486..00000000 Binary files a/outputs/png/strikethrough_round.png and /dev/null differ diff --git a/outputs/png/strikethrough_sharp.png b/outputs/png/strikethrough_sharp.png deleted file mode 100644 index f284412f..00000000 Binary files a/outputs/png/strikethrough_sharp.png and /dev/null differ diff --git a/outputs/png/subscribe_round.png b/outputs/png/subscribe_round.png deleted file mode 100644 index 2238e8ff..00000000 Binary files a/outputs/png/subscribe_round.png and /dev/null differ diff --git a/outputs/png/subscribe_sharp.png b/outputs/png/subscribe_sharp.png deleted file mode 100644 index 2238e8ff..00000000 Binary files a/outputs/png/subscribe_sharp.png and /dev/null differ diff --git a/outputs/png/swap_round.png b/outputs/png/swap_round.png deleted file mode 100644 index 9f8a942c..00000000 Binary files a/outputs/png/swap_round.png and /dev/null differ diff --git a/outputs/png/swap_sharp.png b/outputs/png/swap_sharp.png deleted file mode 100644 index 9f8a942c..00000000 Binary files a/outputs/png/swap_sharp.png and /dev/null differ diff --git a/outputs/png/switch_user_round.png b/outputs/png/switch_user_round.png deleted file mode 100644 index 94d5e41b..00000000 Binary files a/outputs/png/switch_user_round.png and /dev/null differ diff --git a/outputs/png/switch_user_sharp.png b/outputs/png/switch_user_sharp.png deleted file mode 100644 index abed1b60..00000000 Binary files a/outputs/png/switch_user_sharp.png and /dev/null differ diff --git a/outputs/png/sync_action_round.png b/outputs/png/sync_action_round.png deleted file mode 100644 index cea1d6e3..00000000 Binary files a/outputs/png/sync_action_round.png and /dev/null differ diff --git a/outputs/png/sync_action_sharp.png b/outputs/png/sync_action_sharp.png deleted file mode 100644 index 65311f57..00000000 Binary files a/outputs/png/sync_action_sharp.png and /dev/null differ diff --git a/outputs/png/sync_disabled_round.png b/outputs/png/sync_disabled_round.png deleted file mode 100644 index 6f86d5a2..00000000 Binary files a/outputs/png/sync_disabled_round.png and /dev/null differ diff --git a/outputs/png/sync_disabled_sharp.png b/outputs/png/sync_disabled_sharp.png deleted file mode 100644 index f1ab1529..00000000 Binary files a/outputs/png/sync_disabled_sharp.png and /dev/null differ diff --git a/outputs/png/sync_round.png b/outputs/png/sync_round.png deleted file mode 100644 index dbee1fee..00000000 Binary files a/outputs/png/sync_round.png and /dev/null differ diff --git a/outputs/png/sync_sharp.png b/outputs/png/sync_sharp.png deleted file mode 100644 index 65311f57..00000000 Binary files a/outputs/png/sync_sharp.png and /dev/null differ diff --git a/outputs/png/table_round.png b/outputs/png/table_round.png deleted file mode 100644 index 686f22d0..00000000 Binary files a/outputs/png/table_round.png and /dev/null differ diff --git a/outputs/png/table_sharp.png b/outputs/png/table_sharp.png deleted file mode 100644 index 686f22d0..00000000 Binary files a/outputs/png/table_sharp.png and /dev/null differ diff --git a/outputs/png/tablet_mac_round.png b/outputs/png/tablet_mac_round.png deleted file mode 100644 index f0ad6dd6..00000000 Binary files a/outputs/png/tablet_mac_round.png and /dev/null differ diff --git a/outputs/png/tablet_mac_sharp.png b/outputs/png/tablet_mac_sharp.png deleted file mode 100644 index 4d065759..00000000 Binary files a/outputs/png/tablet_mac_sharp.png and /dev/null differ diff --git a/outputs/png/tablet_round.png b/outputs/png/tablet_round.png deleted file mode 100644 index c3a0c323..00000000 Binary files a/outputs/png/tablet_round.png and /dev/null differ diff --git a/outputs/png/tablet_sharp.png b/outputs/png/tablet_sharp.png deleted file mode 100644 index 732542ca..00000000 Binary files a/outputs/png/tablet_sharp.png and /dev/null differ diff --git a/outputs/png/tag_enterprise_round.png b/outputs/png/tag_enterprise_round.png deleted file mode 100644 index 2a286c43..00000000 Binary files a/outputs/png/tag_enterprise_round.png and /dev/null differ diff --git a/outputs/png/tag_enterprise_sharp.png b/outputs/png/tag_enterprise_sharp.png deleted file mode 100644 index 2ededd5e..00000000 Binary files a/outputs/png/tag_enterprise_sharp.png and /dev/null differ diff --git a/outputs/png/tag_round.png b/outputs/png/tag_round.png deleted file mode 100644 index 39c2d76c..00000000 Binary files a/outputs/png/tag_round.png and /dev/null differ diff --git a/outputs/png/tag_sharp.png b/outputs/png/tag_sharp.png deleted file mode 100644 index 39c2d76c..00000000 Binary files a/outputs/png/tag_sharp.png and /dev/null differ diff --git a/outputs/png/tap_to_pay_round.png b/outputs/png/tap_to_pay_round.png deleted file mode 100644 index ed8defeb..00000000 Binary files a/outputs/png/tap_to_pay_round.png and /dev/null differ diff --git a/outputs/png/tap_to_pay_sharp.png b/outputs/png/tap_to_pay_sharp.png deleted file mode 100644 index ed8defeb..00000000 Binary files a/outputs/png/tap_to_pay_sharp.png and /dev/null differ diff --git a/outputs/png/taxi_round.png b/outputs/png/taxi_round.png deleted file mode 100644 index 2a17cfe5..00000000 Binary files a/outputs/png/taxi_round.png and /dev/null differ diff --git a/outputs/png/taxi_sharp.png b/outputs/png/taxi_sharp.png deleted file mode 100644 index 4096db59..00000000 Binary files a/outputs/png/taxi_sharp.png and /dev/null differ diff --git a/outputs/png/text_color_round.png b/outputs/png/text_color_round.png deleted file mode 100644 index e0d9be90..00000000 Binary files a/outputs/png/text_color_round.png and /dev/null differ diff --git a/outputs/png/text_color_sharp.png b/outputs/png/text_color_sharp.png deleted file mode 100644 index e3f6c2c2..00000000 Binary files a/outputs/png/text_color_sharp.png and /dev/null differ diff --git a/outputs/png/tiers_round.png b/outputs/png/tiers_round.png deleted file mode 100644 index 09c01fee..00000000 Binary files a/outputs/png/tiers_round.png and /dev/null differ diff --git a/outputs/png/tiers_sharp.png b/outputs/png/tiers_sharp.png deleted file mode 100644 index 09c01fee..00000000 Binary files a/outputs/png/tiers_sharp.png and /dev/null differ diff --git a/outputs/png/timecard_approve_round.png b/outputs/png/timecard_approve_round.png deleted file mode 100644 index 71e32037..00000000 Binary files a/outputs/png/timecard_approve_round.png and /dev/null differ diff --git a/outputs/png/timecard_approve_sharp.png b/outputs/png/timecard_approve_sharp.png deleted file mode 100644 index 71e32037..00000000 Binary files a/outputs/png/timecard_approve_sharp.png and /dev/null differ diff --git a/outputs/png/timecard_round.png b/outputs/png/timecard_round.png deleted file mode 100644 index 3577a5d4..00000000 Binary files a/outputs/png/timecard_round.png and /dev/null differ diff --git a/outputs/png/timecard_sharp.png b/outputs/png/timecard_sharp.png deleted file mode 100644 index 3577a5d4..00000000 Binary files a/outputs/png/timecard_sharp.png and /dev/null differ diff --git a/outputs/png/timecard_warning_round.png b/outputs/png/timecard_warning_round.png deleted file mode 100644 index 4c272714..00000000 Binary files a/outputs/png/timecard_warning_round.png and /dev/null differ diff --git a/outputs/png/timecard_warning_sharp.png b/outputs/png/timecard_warning_sharp.png deleted file mode 100644 index 4c272714..00000000 Binary files a/outputs/png/timecard_warning_sharp.png and /dev/null differ diff --git a/outputs/png/timer_round.png b/outputs/png/timer_round.png deleted file mode 100644 index 4dc3ae02..00000000 Binary files a/outputs/png/timer_round.png and /dev/null differ diff --git a/outputs/png/timer_sharp.png b/outputs/png/timer_sharp.png deleted file mode 100644 index 653cd0a4..00000000 Binary files a/outputs/png/timer_sharp.png and /dev/null differ diff --git a/outputs/png/toggle_off_round.png b/outputs/png/toggle_off_round.png deleted file mode 100644 index 1d9c143e..00000000 Binary files a/outputs/png/toggle_off_round.png and /dev/null differ diff --git a/outputs/png/toggle_off_sharp.png b/outputs/png/toggle_off_sharp.png deleted file mode 100644 index 1d9c143e..00000000 Binary files a/outputs/png/toggle_off_sharp.png and /dev/null differ diff --git a/outputs/png/toggle_on_round.png b/outputs/png/toggle_on_round.png deleted file mode 100644 index 5c30cb96..00000000 Binary files a/outputs/png/toggle_on_round.png and /dev/null differ diff --git a/outputs/png/toggle_on_sharp.png b/outputs/png/toggle_on_sharp.png deleted file mode 100644 index 5c30cb96..00000000 Binary files a/outputs/png/toggle_on_sharp.png and /dev/null differ diff --git a/outputs/png/touch_round.png b/outputs/png/touch_round.png deleted file mode 100644 index 0021c11a..00000000 Binary files a/outputs/png/touch_round.png and /dev/null differ diff --git a/outputs/png/touch_sharp.png b/outputs/png/touch_sharp.png deleted file mode 100644 index 1c2e6a5e..00000000 Binary files a/outputs/png/touch_sharp.png and /dev/null differ diff --git a/outputs/png/train_round.png b/outputs/png/train_round.png deleted file mode 100644 index 7b6ffcc4..00000000 Binary files a/outputs/png/train_round.png and /dev/null differ diff --git a/outputs/png/train_sharp.png b/outputs/png/train_sharp.png deleted file mode 100644 index 1de75db1..00000000 Binary files a/outputs/png/train_sharp.png and /dev/null differ diff --git a/outputs/png/transfer_round.png b/outputs/png/transfer_round.png deleted file mode 100644 index 9a96434c..00000000 Binary files a/outputs/png/transfer_round.png and /dev/null differ diff --git a/outputs/png/transfer_sharp.png b/outputs/png/transfer_sharp.png deleted file mode 100644 index 9a96434c..00000000 Binary files a/outputs/png/transfer_sharp.png and /dev/null differ diff --git a/outputs/png/trending_down_round.png b/outputs/png/trending_down_round.png deleted file mode 100644 index e7b52d5f..00000000 Binary files a/outputs/png/trending_down_round.png and /dev/null differ diff --git a/outputs/png/trending_down_sharp.png b/outputs/png/trending_down_sharp.png deleted file mode 100644 index 7788fd38..00000000 Binary files a/outputs/png/trending_down_sharp.png and /dev/null differ diff --git a/outputs/png/trending_up_round.png b/outputs/png/trending_up_round.png deleted file mode 100644 index d29937c3..00000000 Binary files a/outputs/png/trending_up_round.png and /dev/null differ diff --git a/outputs/png/trending_up_sharp.png b/outputs/png/trending_up_sharp.png deleted file mode 100644 index 468ed40b..00000000 Binary files a/outputs/png/trending_up_sharp.png and /dev/null differ diff --git a/outputs/png/tv_round.png b/outputs/png/tv_round.png deleted file mode 100644 index 79695be7..00000000 Binary files a/outputs/png/tv_round.png and /dev/null differ diff --git a/outputs/png/tv_sharp.png b/outputs/png/tv_sharp.png deleted file mode 100644 index dbc4828f..00000000 Binary files a/outputs/png/tv_sharp.png and /dev/null differ diff --git a/outputs/png/twitter_round.png b/outputs/png/twitter_round.png deleted file mode 100644 index 32b3c37a..00000000 Binary files a/outputs/png/twitter_round.png and /dev/null differ diff --git a/outputs/png/twitter_sharp.png b/outputs/png/twitter_sharp.png deleted file mode 100644 index 32b3c37a..00000000 Binary files a/outputs/png/twitter_sharp.png and /dev/null differ diff --git a/outputs/png/type_round.png b/outputs/png/type_round.png deleted file mode 100644 index 2b83fe7a..00000000 Binary files a/outputs/png/type_round.png and /dev/null differ diff --git a/outputs/png/type_sharp.png b/outputs/png/type_sharp.png deleted file mode 100644 index 33e14101..00000000 Binary files a/outputs/png/type_sharp.png and /dev/null differ diff --git a/outputs/png/uhf_rfid_round.png b/outputs/png/uhf_rfid_round.png deleted file mode 100644 index 8d979438..00000000 Binary files a/outputs/png/uhf_rfid_round.png and /dev/null differ diff --git a/outputs/png/uhf_rfid_sharp.png b/outputs/png/uhf_rfid_sharp.png deleted file mode 100644 index 8d979438..00000000 Binary files a/outputs/png/uhf_rfid_sharp.png and /dev/null differ diff --git a/outputs/png/underline_round.png b/outputs/png/underline_round.png deleted file mode 100644 index e2db7eb3..00000000 Binary files a/outputs/png/underline_round.png and /dev/null differ diff --git a/outputs/png/underline_sharp.png b/outputs/png/underline_sharp.png deleted file mode 100644 index 0bbe2958..00000000 Binary files a/outputs/png/underline_sharp.png and /dev/null differ diff --git a/outputs/png/undo_round.png b/outputs/png/undo_round.png deleted file mode 100644 index da4a13f2..00000000 Binary files a/outputs/png/undo_round.png and /dev/null differ diff --git a/outputs/png/undo_sharp.png b/outputs/png/undo_sharp.png deleted file mode 100644 index a7d381e1..00000000 Binary files a/outputs/png/undo_sharp.png and /dev/null differ diff --git a/outputs/png/unfold_less_round.png b/outputs/png/unfold_less_round.png deleted file mode 100644 index 2146465a..00000000 Binary files a/outputs/png/unfold_less_round.png and /dev/null differ diff --git a/outputs/png/unfold_less_sharp.png b/outputs/png/unfold_less_sharp.png deleted file mode 100644 index bf1beed3..00000000 Binary files a/outputs/png/unfold_less_sharp.png and /dev/null differ diff --git a/outputs/png/unfold_more_round.png b/outputs/png/unfold_more_round.png deleted file mode 100644 index 8da69bc8..00000000 Binary files a/outputs/png/unfold_more_round.png and /dev/null differ diff --git a/outputs/png/unfold_more_sharp.png b/outputs/png/unfold_more_sharp.png deleted file mode 100644 index 06d0fe3b..00000000 Binary files a/outputs/png/unfold_more_sharp.png and /dev/null differ diff --git a/outputs/png/unlock_alt_round.png b/outputs/png/unlock_alt_round.png deleted file mode 100644 index 3b8994cd..00000000 Binary files a/outputs/png/unlock_alt_round.png and /dev/null differ diff --git a/outputs/png/unlock_alt_sharp.png b/outputs/png/unlock_alt_sharp.png deleted file mode 100644 index 7d015080..00000000 Binary files a/outputs/png/unlock_alt_sharp.png and /dev/null differ diff --git a/outputs/png/unlock_round.png b/outputs/png/unlock_round.png deleted file mode 100644 index fb259db3..00000000 Binary files a/outputs/png/unlock_round.png and /dev/null differ diff --git a/outputs/png/unlock_sharp.png b/outputs/png/unlock_sharp.png deleted file mode 100644 index 250ddf7d..00000000 Binary files a/outputs/png/unlock_sharp.png and /dev/null differ diff --git a/outputs/png/unsubscribe_round.png b/outputs/png/unsubscribe_round.png deleted file mode 100644 index 9080bc33..00000000 Binary files a/outputs/png/unsubscribe_round.png and /dev/null differ diff --git a/outputs/png/unsubscribe_sharp.png b/outputs/png/unsubscribe_sharp.png deleted file mode 100644 index 9080bc33..00000000 Binary files a/outputs/png/unsubscribe_sharp.png and /dev/null differ diff --git a/outputs/png/update_round.png b/outputs/png/update_round.png deleted file mode 100644 index 972a562c..00000000 Binary files a/outputs/png/update_round.png and /dev/null differ diff --git a/outputs/png/update_sharp.png b/outputs/png/update_sharp.png deleted file mode 100644 index 6f1d7355..00000000 Binary files a/outputs/png/update_sharp.png and /dev/null differ diff --git a/outputs/png/upload_file_round.png b/outputs/png/upload_file_round.png deleted file mode 100644 index bd26b72b..00000000 Binary files a/outputs/png/upload_file_round.png and /dev/null differ diff --git a/outputs/png/upload_file_sharp.png b/outputs/png/upload_file_sharp.png deleted file mode 100644 index 6923e957..00000000 Binary files a/outputs/png/upload_file_sharp.png and /dev/null differ diff --git a/outputs/png/upload_round.png b/outputs/png/upload_round.png deleted file mode 100644 index 467f7ffb..00000000 Binary files a/outputs/png/upload_round.png and /dev/null differ diff --git a/outputs/png/upload_sharp.png b/outputs/png/upload_sharp.png deleted file mode 100644 index 5cd9d2a2..00000000 Binary files a/outputs/png/upload_sharp.png and /dev/null differ diff --git a/outputs/png/usb_alt_device_round.png b/outputs/png/usb_alt_device_round.png deleted file mode 100644 index 51aeceb8..00000000 Binary files a/outputs/png/usb_alt_device_round.png and /dev/null differ diff --git a/outputs/png/usb_alt_device_sharp.png b/outputs/png/usb_alt_device_sharp.png deleted file mode 100644 index 51aeceb8..00000000 Binary files a/outputs/png/usb_alt_device_sharp.png and /dev/null differ diff --git a/outputs/png/usb_alt_round.png b/outputs/png/usb_alt_round.png deleted file mode 100644 index fff58e6f..00000000 Binary files a/outputs/png/usb_alt_round.png and /dev/null differ diff --git a/outputs/png/usb_alt_sharp.png b/outputs/png/usb_alt_sharp.png deleted file mode 100644 index 26f0f459..00000000 Binary files a/outputs/png/usb_alt_sharp.png and /dev/null differ diff --git a/outputs/png/usb_round.png b/outputs/png/usb_round.png deleted file mode 100644 index a93ebec7..00000000 Binary files a/outputs/png/usb_round.png and /dev/null differ diff --git a/outputs/png/usb_sharp.png b/outputs/png/usb_sharp.png deleted file mode 100644 index a93ebec7..00000000 Binary files a/outputs/png/usb_sharp.png and /dev/null differ diff --git a/outputs/png/user_circle_round.png b/outputs/png/user_circle_round.png deleted file mode 100644 index 9d17ec69..00000000 Binary files a/outputs/png/user_circle_round.png and /dev/null differ diff --git a/outputs/png/user_circle_sharp.png b/outputs/png/user_circle_sharp.png deleted file mode 100644 index 9d17ec69..00000000 Binary files a/outputs/png/user_circle_sharp.png and /dev/null differ diff --git a/outputs/png/user_minor_round.png b/outputs/png/user_minor_round.png deleted file mode 100644 index 15479b6c..00000000 Binary files a/outputs/png/user_minor_round.png and /dev/null differ diff --git a/outputs/png/user_minor_sharp.png b/outputs/png/user_minor_sharp.png deleted file mode 100644 index 15479b6c..00000000 Binary files a/outputs/png/user_minor_sharp.png and /dev/null differ diff --git a/outputs/png/user_round.png b/outputs/png/user_round.png deleted file mode 100644 index 252895e1..00000000 Binary files a/outputs/png/user_round.png and /dev/null differ diff --git a/outputs/png/user_settings_round.png b/outputs/png/user_settings_round.png deleted file mode 100644 index 06025857..00000000 Binary files a/outputs/png/user_settings_round.png and /dev/null differ diff --git a/outputs/png/user_settings_sharp.png b/outputs/png/user_settings_sharp.png deleted file mode 100644 index 2a1a7e74..00000000 Binary files a/outputs/png/user_settings_sharp.png and /dev/null differ diff --git a/outputs/png/user_sharp.png b/outputs/png/user_sharp.png deleted file mode 100644 index c77115b3..00000000 Binary files a/outputs/png/user_sharp.png and /dev/null differ diff --git a/outputs/png/vacation_round.png b/outputs/png/vacation_round.png deleted file mode 100644 index f28093af..00000000 Binary files a/outputs/png/vacation_round.png and /dev/null differ diff --git a/outputs/png/vacation_sharp.png b/outputs/png/vacation_sharp.png deleted file mode 100644 index f28093af..00000000 Binary files a/outputs/png/vacation_sharp.png and /dev/null differ diff --git a/outputs/png/verified_round.png b/outputs/png/verified_round.png deleted file mode 100644 index 3157073e..00000000 Binary files a/outputs/png/verified_round.png and /dev/null differ diff --git a/outputs/png/verified_sharp.png b/outputs/png/verified_sharp.png deleted file mode 100644 index f5fbe2cc..00000000 Binary files a/outputs/png/verified_sharp.png and /dev/null differ diff --git a/outputs/png/very_satisfied_round.png b/outputs/png/very_satisfied_round.png deleted file mode 100644 index 70b87793..00000000 Binary files a/outputs/png/very_satisfied_round.png and /dev/null differ diff --git a/outputs/png/very_satisfied_sharp.png b/outputs/png/very_satisfied_sharp.png deleted file mode 100644 index 3acf782f..00000000 Binary files a/outputs/png/very_satisfied_sharp.png and /dev/null differ diff --git a/outputs/png/video_camera_round.png b/outputs/png/video_camera_round.png deleted file mode 100644 index f5809950..00000000 Binary files a/outputs/png/video_camera_round.png and /dev/null differ diff --git a/outputs/png/video_camera_sharp.png b/outputs/png/video_camera_sharp.png deleted file mode 100644 index ddcc4f78..00000000 Binary files a/outputs/png/video_camera_sharp.png and /dev/null differ diff --git a/outputs/png/video_off_round.png b/outputs/png/video_off_round.png deleted file mode 100644 index 11223ec7..00000000 Binary files a/outputs/png/video_off_round.png and /dev/null differ diff --git a/outputs/png/video_off_sharp.png b/outputs/png/video_off_sharp.png deleted file mode 100644 index 11223ec7..00000000 Binary files a/outputs/png/video_off_sharp.png and /dev/null differ diff --git a/outputs/png/video_play_round.png b/outputs/png/video_play_round.png deleted file mode 100644 index 840f4d90..00000000 Binary files a/outputs/png/video_play_round.png and /dev/null differ diff --git a/outputs/png/video_play_sharp.png b/outputs/png/video_play_sharp.png deleted file mode 100644 index df8665d3..00000000 Binary files a/outputs/png/video_play_sharp.png and /dev/null differ diff --git a/outputs/png/video_round.png b/outputs/png/video_round.png deleted file mode 100644 index 70281843..00000000 Binary files a/outputs/png/video_round.png and /dev/null differ diff --git a/outputs/png/video_sharp.png b/outputs/png/video_sharp.png deleted file mode 100644 index 70281843..00000000 Binary files a/outputs/png/video_sharp.png and /dev/null differ diff --git a/outputs/png/visibility_off_round.png b/outputs/png/visibility_off_round.png deleted file mode 100644 index 6bcc05cb..00000000 Binary files a/outputs/png/visibility_off_round.png and /dev/null differ diff --git a/outputs/png/visibility_off_sharp.png b/outputs/png/visibility_off_sharp.png deleted file mode 100644 index 0ea9a006..00000000 Binary files a/outputs/png/visibility_off_sharp.png and /dev/null differ diff --git a/outputs/png/visibility_round.png b/outputs/png/visibility_round.png deleted file mode 100644 index d6b3e9cd..00000000 Binary files a/outputs/png/visibility_round.png and /dev/null differ diff --git a/outputs/png/visibility_sharp.png b/outputs/png/visibility_sharp.png deleted file mode 100644 index d6b3e9cd..00000000 Binary files a/outputs/png/visibility_sharp.png and /dev/null differ diff --git a/outputs/png/volte_round.png b/outputs/png/volte_round.png deleted file mode 100644 index 2015881c..00000000 Binary files a/outputs/png/volte_round.png and /dev/null differ diff --git a/outputs/png/volte_sharp.png b/outputs/png/volte_sharp.png deleted file mode 100644 index 2015881c..00000000 Binary files a/outputs/png/volte_sharp.png and /dev/null differ diff --git a/outputs/png/volume_down_round.png b/outputs/png/volume_down_round.png deleted file mode 100644 index 753a2c58..00000000 Binary files a/outputs/png/volume_down_round.png and /dev/null differ diff --git a/outputs/png/volume_down_sharp.png b/outputs/png/volume_down_sharp.png deleted file mode 100644 index 9f141053..00000000 Binary files a/outputs/png/volume_down_sharp.png and /dev/null differ diff --git a/outputs/png/volume_mute_round.png b/outputs/png/volume_mute_round.png deleted file mode 100644 index 13c8fccf..00000000 Binary files a/outputs/png/volume_mute_round.png and /dev/null differ diff --git a/outputs/png/volume_mute_sharp.png b/outputs/png/volume_mute_sharp.png deleted file mode 100644 index 173e0311..00000000 Binary files a/outputs/png/volume_mute_sharp.png and /dev/null differ diff --git a/outputs/png/volume_off_round.png b/outputs/png/volume_off_round.png deleted file mode 100644 index c6cb6347..00000000 Binary files a/outputs/png/volume_off_round.png and /dev/null differ diff --git a/outputs/png/volume_off_sharp.png b/outputs/png/volume_off_sharp.png deleted file mode 100644 index 5e5c67b2..00000000 Binary files a/outputs/png/volume_off_sharp.png and /dev/null differ diff --git a/outputs/png/volume_up_round.png b/outputs/png/volume_up_round.png deleted file mode 100644 index 8aba0128..00000000 Binary files a/outputs/png/volume_up_round.png and /dev/null differ diff --git a/outputs/png/volume_up_sharp.png b/outputs/png/volume_up_sharp.png deleted file mode 100644 index 29c4c578..00000000 Binary files a/outputs/png/volume_up_sharp.png and /dev/null differ diff --git a/outputs/png/warning_outline_round.png b/outputs/png/warning_outline_round.png deleted file mode 100644 index 5d6e8f44..00000000 Binary files a/outputs/png/warning_outline_round.png and /dev/null differ diff --git a/outputs/png/warning_outline_sharp.png b/outputs/png/warning_outline_sharp.png deleted file mode 100644 index f3cd4ee4..00000000 Binary files a/outputs/png/warning_outline_sharp.png and /dev/null differ diff --git a/outputs/png/warning_round.png b/outputs/png/warning_round.png deleted file mode 100644 index 2b009408..00000000 Binary files a/outputs/png/warning_round.png and /dev/null differ diff --git a/outputs/png/warning_sharp.png b/outputs/png/warning_sharp.png deleted file mode 100644 index 4ad10eae..00000000 Binary files a/outputs/png/warning_sharp.png and /dev/null differ diff --git a/outputs/png/watch_round.png b/outputs/png/watch_round.png deleted file mode 100644 index eb16a560..00000000 Binary files a/outputs/png/watch_round.png and /dev/null differ diff --git a/outputs/png/watch_sharp.png b/outputs/png/watch_sharp.png deleted file mode 100644 index 1ff02740..00000000 Binary files a/outputs/png/watch_sharp.png and /dev/null differ diff --git a/outputs/png/wb_image_round.png b/outputs/png/wb_image_round.png deleted file mode 100644 index 71003955..00000000 Binary files a/outputs/png/wb_image_round.png and /dev/null differ diff --git a/outputs/png/wb_image_sharp.png b/outputs/png/wb_image_sharp.png deleted file mode 100644 index 71003955..00000000 Binary files a/outputs/png/wb_image_sharp.png and /dev/null differ diff --git a/outputs/png/wb_round.png b/outputs/png/wb_round.png deleted file mode 100644 index 6faeffdf..00000000 Binary files a/outputs/png/wb_round.png and /dev/null differ diff --git a/outputs/png/wb_sharp.png b/outputs/png/wb_sharp.png deleted file mode 100644 index 6faeffdf..00000000 Binary files a/outputs/png/wb_sharp.png and /dev/null differ diff --git a/outputs/png/world_action_round.png b/outputs/png/world_action_round.png deleted file mode 100644 index 97559c1e..00000000 Binary files a/outputs/png/world_action_round.png and /dev/null differ diff --git a/outputs/png/world_action_sharp.png b/outputs/png/world_action_sharp.png deleted file mode 100644 index 97559c1e..00000000 Binary files a/outputs/png/world_action_sharp.png and /dev/null differ diff --git a/outputs/png/world_round.png b/outputs/png/world_round.png deleted file mode 100644 index 97559c1e..00000000 Binary files a/outputs/png/world_round.png and /dev/null differ diff --git a/outputs/png/world_sharp.png b/outputs/png/world_sharp.png deleted file mode 100644 index 97559c1e..00000000 Binary files a/outputs/png/world_sharp.png and /dev/null differ diff --git a/outputs/png/write_round.png b/outputs/png/write_round.png deleted file mode 100644 index 271f5066..00000000 Binary files a/outputs/png/write_round.png and /dev/null differ diff --git a/outputs/png/write_sharp.png b/outputs/png/write_sharp.png deleted file mode 100644 index 271f5066..00000000 Binary files a/outputs/png/write_sharp.png and /dev/null differ diff --git a/outputs/png/youtube_round.png b/outputs/png/youtube_round.png deleted file mode 100644 index fa6c4511..00000000 Binary files a/outputs/png/youtube_round.png and /dev/null differ diff --git a/outputs/png/youtube_sharp.png b/outputs/png/youtube_sharp.png deleted file mode 100644 index fa6c4511..00000000 Binary files a/outputs/png/youtube_sharp.png and /dev/null differ diff --git a/outputs/png/zero_scale_round.png b/outputs/png/zero_scale_round.png deleted file mode 100644 index d1df132c..00000000 Binary files a/outputs/png/zero_scale_round.png and /dev/null differ diff --git a/outputs/png/zero_scale_sharp.png b/outputs/png/zero_scale_sharp.png deleted file mode 100644 index 4e665124..00000000 Binary files a/outputs/png/zero_scale_sharp.png and /dev/null differ diff --git a/outputs/png/zoom_in_map_round.png b/outputs/png/zoom_in_map_round.png deleted file mode 100644 index 9ceea29a..00000000 Binary files a/outputs/png/zoom_in_map_round.png and /dev/null differ diff --git a/outputs/png/zoom_in_map_sharp.png b/outputs/png/zoom_in_map_sharp.png deleted file mode 100644 index dc1ad935..00000000 Binary files a/outputs/png/zoom_in_map_sharp.png and /dev/null differ diff --git a/outputs/png/zoom_in_round.png b/outputs/png/zoom_in_round.png deleted file mode 100644 index 9e1a7326..00000000 Binary files a/outputs/png/zoom_in_round.png and /dev/null differ diff --git a/outputs/png/zoom_in_sharp.png b/outputs/png/zoom_in_sharp.png deleted file mode 100644 index 40c855cb..00000000 Binary files a/outputs/png/zoom_in_sharp.png and /dev/null differ diff --git a/outputs/png/zoom_out_map_round.png b/outputs/png/zoom_out_map_round.png deleted file mode 100644 index 63d5adf9..00000000 Binary files a/outputs/png/zoom_out_map_round.png and /dev/null differ diff --git a/outputs/png/zoom_out_map_sharp.png b/outputs/png/zoom_out_map_sharp.png deleted file mode 100644 index 0c524642..00000000 Binary files a/outputs/png/zoom_out_map_sharp.png and /dev/null differ diff --git a/outputs/png/zoom_out_round.png b/outputs/png/zoom_out_round.png deleted file mode 100644 index 3d7fc855..00000000 Binary files a/outputs/png/zoom_out_round.png and /dev/null differ diff --git a/outputs/png/zoom_out_sharp.png b/outputs/png/zoom_out_sharp.png deleted file mode 100644 index c28e67b5..00000000 Binary files a/outputs/png/zoom_out_sharp.png and /dev/null differ diff --git a/scripts/fetchIcons.ts b/scripts/fetchIcons.ts index a0eb0fc1..e6b9458c 100644 --- a/scripts/fetchIcons.ts +++ b/scripts/fetchIcons.ts @@ -10,11 +10,12 @@ import { generateHash } from "./utils/hash.js"; import { ComponentSets } from "./types/figmaTypes.js"; import { generatePNGs } from "./generators/generatePNGs.js"; -export const fontDir = "/font"; export const iconsDir = "/icons"; -export const definitionsDir = "/definitions"; export const tempDir = "/temp"; export const pngDir = "/png"; +export const flutterDir = "/flutter"; +export const webDir = "/web"; + /** * Main function to run icons action. For slightly more information, see {@link https://miro.com/app/board/uXjVKUMv1ME=/?share_link_id=952145602435 | Miro } * @@ -35,11 +36,11 @@ export default async function main( outputDir: string, verboseLogs: boolean ): Promise { - const fontOutputDir = outputDir + fontDir; const iconsOutputDir = outputDir + iconsDir; - const definitionsOutputDir = outputDir + definitionsDir; const tempOutputDir = outputDir + tempDir; const pngOutputDir = outputDir + pngDir; + const dartOutputDir = outputDir + flutterDir; + const tsOutputDir = outputDir + webDir; const response = await getFigmaDocument(figmaFileId, figmaToken); console.log("✅ - Fetched figma document"); @@ -79,10 +80,10 @@ export default async function main( await optimizeSVGs(iconsOutputDir, tempOutputDir, categoryNames); console.log("✅ - Optimized SVGs"); - const generateFontResult = await generateFonts(tempOutputDir, fontOutputDir, "zeta-icons"); + const generateFontResult = await generateFonts(tempOutputDir, "zeta-icons", dartOutputDir, tsOutputDir); console.log("✅ - Generated fonts"); - generateDefinitionFiles(outputDir, definitionsOutputDir, generateFontResult, manifest); + generateDefinitionFiles(outputDir, generateFontResult, manifest); console.log("✅ - Generated definition files."); generatePNGs(iconsOutputDir, pngOutputDir, categoryNames); diff --git a/scripts/generators/generateDefinitionFiles.ts b/scripts/generators/generateDefinitionFiles.ts index 9dab5e49..e87045d4 100644 --- a/scripts/generators/generateDefinitionFiles.ts +++ b/scripts/generators/generateDefinitionFiles.ts @@ -1,39 +1,38 @@ import { createFolder } from "../utils/fileUtils.js"; import { GenerateFontResult, IconManifest } from "../types/customTypes.js"; import { readFileSync, writeFileSync } from "fs"; +import { flutterDir, webDir } from "../fetchIcons.js"; /** - * Writes out `icon-manifest.json`, `icons.dart` and `icon-types.ts`. + * Writes out `icon-manifest.json`, `icons.g.dart` and `icon-types.ts`. * * @param {String} outputDir - Location of output directory. Icon manifest is saved here. - * @param {String} definitionsOutputDir - Location of definitions output. * @param {GenerateFontResult} fontData - Object containing body lines for generating definition files. * @param {IconManifest} manifest - data to be written to `icon-manifest.json` */ -export const generateDefinitionFiles = ( - outputDir: string, - definitionsOutputDir: string, - fontData: GenerateFontResult, - manifest: IconManifest -) => { - createFolder(definitionsOutputDir); +export const generateDefinitionFiles = (outputDir: string, fontData: GenerateFontResult, manifest: IconManifest) => { + const dartOutputDir = outputDir + flutterDir; + const tsOutputDir = outputDir + webDir; + + createFolder(dartOutputDir); + createFolder(tsOutputDir); const dartFile = generateDartFile(fontData); const tsFile = generateTSFile(fontData); const iconManifestFile = JSON.stringify(Object.fromEntries(manifest)); - writeFileSync(definitionsOutputDir + "/icons.dart", dartFile); - writeFileSync(definitionsOutputDir + "/icon-types.ts", tsFile); + writeFileSync(dartOutputDir + "/icons.g.dart", dartFile); + writeFileSync(tsOutputDir + "/icon-types.ts", tsFile); writeFileSync(outputDir + "/icon-manifest.json", iconManifestFile); }; /** - * Builds out contents of `icons.dart`. + * Builds out contents of `icons.g.dart`. * * Inserts new icon data into template file: `scripts/src/templates/icons.dart.template`. * * @param {GenerateFontResult} fontData - Object containing body lines for generating definition files. - * @returns {string} Content of `icons.dart`. + * @returns {string} Content of `icons.g.dart`. */ const generateDartFile = (fontData: GenerateFontResult): string => { let dartTemplate = readFileSync("./scripts/templates/icons.dart.template").toString(); diff --git a/scripts/generators/generateFonts.ts b/scripts/generators/generateFonts.ts index 72fa1b00..240147ff 100644 --- a/scripts/generators/generateFonts.ts +++ b/scripts/generators/generateFonts.ts @@ -12,14 +12,17 @@ const GITHUB_URL = "https://raw.githubusercontent.com/ZebraDevs/zeta-icons/main/ * as this data needs to link up to unicode values generated in this step. * * @param {string} inputDir - Location of temporary directory containing optimized SVG files. - * @param {String} fontOutputDir - Location of font output directory. + * @param {string} fontName - Name of font to be generated. + * @param {string} ttfDir - Location to save TTF font files. + * @param {string} woff2Dir - Location to save WOFF2 font files. * @returns {Promise} Object containing body lines for generating definition files. * @throws If any font file was not generated. */ export const generateFonts = async ( inputDir: string, - fontOutputDir: string, - fontName: string + fontName: string, + ttfDir: string, + woff2Dir: string ): Promise => { const fontResult: GenerateFontResult = { dartDefinitions: [], @@ -28,13 +31,15 @@ export const generateFonts = async ( iconNames: [], }; - const baseFontPath = `${fontOutputDir}/${fontName}`; - createFolder(fontOutputDir); + const ttfPath = `${ttfDir}/${fontName}`; + const woff2Path = `${woff2Dir}/${fontName}`; + createFolder(ttfDir); + createFolder(woff2Dir); const roundFonts = await buildFontFile("round", fontResult, inputDir); if (roundFonts.ttf && roundFonts.woff2) { - writeFileSync(`${baseFontPath}-round.ttf`, roundFonts.ttf); - writeFileSync(`${baseFontPath}-round.woff2`, roundFonts.woff2); + writeFileSync(`${ttfPath}-round.ttf`, roundFonts.ttf); + writeFileSync(`${woff2Path}-round.woff2`, roundFonts.woff2); } else { throw new Error( "Failed to build round fonts: " + (!roundFonts.ttf ? "ttf " : "") + !roundFonts.woff2 ? "woff2" : "" @@ -43,8 +48,8 @@ export const generateFonts = async ( const sharpFonts = await buildFontFile("sharp", fontResult, inputDir); if (sharpFonts.ttf && sharpFonts.woff2) { - writeFileSync(`${baseFontPath}-sharp.ttf`, sharpFonts.ttf); - writeFileSync(`${baseFontPath}-sharp.woff2`, sharpFonts.woff2); + writeFileSync(`${ttfPath}-sharp.ttf`, sharpFonts.ttf); + writeFileSync(`${woff2Path}-sharp.woff2`, sharpFonts.woff2); } else { throw new Error( "Failed to build sharp fonts: " + (!sharpFonts.ttf ? "ttf " : "") + !sharpFonts.woff2 ? "woff2" : "" @@ -104,7 +109,7 @@ const buildFontFile = async (type: FontType, fontResult: GenerateFontResult, inp * @param {string} iconName - snake_case formatted name for icon. * @param {string} unicode - Unicode value to link icon to font. * @param {FontType} type - Round or sharp. - * @returns {string} Dart definition line used in body of `Icons.dart`. + * @returns {string} Dart definition line used in body of `icons.g.dart`. */ function getDartIconDefinition(iconName: string, unicode: string, type: FontType | undefined): string { const iconPreview = getIconPreview(iconName, type); diff --git a/scripts/templates/icons.dart.template b/scripts/templates/icons.dart.template index 28bdd8c2..84b0ff9b 100644 --- a/scripts/templates/icons.dart.template +++ b/scripts/templates/icons.dart.template @@ -4,13 +4,22 @@ import 'package:flutter/material.dart'; // This file is automatically generated by the zeta-icons repository // DO NOT MODIFY +/// Current version of Zeta Icons const zetaIconsVersion = 'VERSION_NUM'; /// Zeta Icons. Full list of icons can be found at [Zeta Icons](https://zeta-icons.web.app/). +/// {@category Assets} abstract class ZetaIcons { + /// Default icon font name static const String family = 'zeta-icons'; + + /// Icon font name for round icons static const String familyRound = 'zeta-icons-round'; + + /// Icon font name for sharp icons static const String familySharp = 'zeta-icons-sharp'; + + /// Package name for zeta flutter static const String package = 'zeta_flutter'; // Icons @@ -23,7 +32,7 @@ abstract class ZetaIcons { {{sharpIcons}} } - // List of all rounded icons. + // List of all icons. const Map icons = { {{iconNames}} }; diff --git a/test/data/categoryNodes.json b/test/data/categoryNodes.json index c460361c..5cd743b2 100644 --- a/test/data/categoryNodes.json +++ b/test/data/categoryNodes.json @@ -1 +1 @@ -[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]}] \ No newline at end of file +[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"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":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}] \ No newline at end of file diff --git a/test/data/constants.ts b/test/data/constants.ts index d9c03e60..c0644464 100644 --- a/test/data/constants.ts +++ b/test/data/constants.ts @@ -3,8 +3,8 @@ const baseDir = "./test/outputs"; export const testOutputDir = `${baseDir}/test-figma`; export const testTempOutputDir = `${testOutputDir}/temp`; export const testIconsOutputDir = `${testOutputDir}/icons`; -export const testFontsOutputDir = `${testOutputDir}/fonts`; -export const testDefinitionsOutputDir = `${testOutputDir}/definitions`; +export const testDartOutputDir = `${testOutputDir}/flutter`; +export const testTSOutputDir = `${testOutputDir}/web`; export const zdsIntegrationOutputDir = `${baseDir}/zds`; diff --git a/test/data/documentResponse.json b/test/data/documentResponse.json index b73c67e3..083ec19c 100644 --- a/test/data/documentResponse.json +++ b/test/data/documentResponse.json @@ -1 +1 @@ -{"document":{"id":"0:0","name":"Document","type":"DOCUMENT","scrollBehavior":"SCROLLS","children":[{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"},"exportSettings":[]}]},"components":{"176:5663":{"key":"bf07221265357cac7113413da91bbd25e4d95bc2","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5666":{"key":"37e5859e9888b39c556dbbc7f534cd22d33fccf1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5670":{"key":"4a646b8f23f9fa19ce5776d8b844eff4e3998a92","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5673":{"key":"f3e38a1df3d2a0dd143c59369802031b01f5eba4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5677":{"key":"be0cce59ad61d9da24dd68feeccb95b91d2b8e6f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5680":{"key":"69b6781d64a23e01377d64661a213d688088fb77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5684":{"key":"3952dee885bfac2fd916497e3499f36ee497930a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5687":{"key":"0bf1042906eff5c0a8e372f3498aec15dc62e2f2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5691":{"key":"f0c83ab82052eae1c32899d1969cf1340c2171cb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5694":{"key":"02883f3e322c0f34d266bbcf40717628783471ae","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5698":{"key":"77c8ba1775d2e118e15850b9714609583a961f50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5701":{"key":"54b26c0d79e51f0042d9655d6674a3680da76a24","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5705":{"key":"60997624acf02a8ca29b468419571610900bb7a4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5708":{"key":"595c3dc44f8f763f0220a727a0d00ad52994366e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5712":{"key":"996c8bc6987d808784ffa85766c9043862c36ac0","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5715":{"key":"a24c37ae2b697cd2564920f6f3bd9ef0bfe9b942","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5719":{"key":"6884aa47b070b5c5b107e85663b09832ca47105b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5722":{"key":"f7634a6fee0c33d8cdcf9184b8350ff10bf5670a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5726":{"key":"0ddf6d8c4dcf36fe6d3908fc129aede965b9a182","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5729":{"key":"b70fd7183395df9e3c690821b319a97a5d54c72f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5733":{"key":"659dfb67d970c19aca03864f26fb56d8c3614c50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5736":{"key":"8927c066336eb7d109bc4a355491e3909be59538","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5740":{"key":"f8ad66e31add1e1fd3b51a00eb8df963e8f64cca","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5743":{"key":"f2f07d0efd39e8626b83b50f05eb220945110245","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5747":{"key":"3cbec281a7ea74297c79a1e5654c39f60249c515","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5750":{"key":"e9c063d498b06612d16f8e6200baa5153d1fd2ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5754":{"key":"08ef5c3b37b0b9867e5221cb3bb74ea24f68fd14","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5757":{"key":"f4b93f51e74eb1bf89b6aaccda161e643d162191","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5761":{"key":"57076834105d23117f790bb0559015ea5e4dbad4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5764":{"key":"eb41de7d6bdfe8c176af1869b44bf336ec439585","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5768":{"key":"348a9cfc5fcb788c0256a61b0413bfaf8a715977","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5771":{"key":"849b66c2bac8b3a6feb7aff32efca3711e692859","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5775":{"key":"e27dbf6aa03bfa1ce82645524479d87c547b5a05","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5778":{"key":"cc2168eee3309e11de97d001f05e8db6ccddfb27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5782":{"key":"ac0ac344b675c0f1c6803cd2379463b94f652ccb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5785":{"key":"b9b43465c2c93e41cffbe2e928ae22f6b5e378e3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5789":{"key":"c900d0bebfe7d7c1bf5933c3d75089755d5cb859","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5792":{"key":"01a0dda94fbb581616e60c6cd1ccbd5a331ded4d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5796":{"key":"cdbf5d03b1101c8c26c6e49c3c2370c20d71802e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5799":{"key":"f56a9820bac433ed44240d76877698953d9f3eb1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5803":{"key":"adc4222edf1df2950da08914b0ea636b9b0b1d66","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5806":{"key":"48d290d322a29078e3cb7313e244314ed32fafaf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5810":{"key":"e3a5efe9cf12b2a379b2886d9ffff25cbe243b33","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5813":{"key":"386d2acab0cb44238277235f5f1bd5c3093426b2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5817":{"key":"847a511f71f74f216e7910ec1a63ac78f569ba96","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5820":{"key":"f4eb7d7393f7af13ba16d3c2d3c5a629441cdd8c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5823":{"key":"2fc2428ecea6351cd8e9269bbb43b9762daa66f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5826":{"key":"d3d8ecdc0def6e4ca5dc701e1788d01b2f0a5c91","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5830":{"key":"18f43d394e408f315a1d502ebb65e2dea27dffd3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5833":{"key":"4efe6ddc1b783f4ca6161469240a210c05c7e10f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5840":{"key":"e9d7c323d2d837d94910f68aec2e56c066fc47fd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5843":{"key":"54711c8e12c32737a18b548b80f20b94ba708607","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5847":{"key":"d8dd1f3930bfaf9425be0e501d038ae66046dfb8","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5850":{"key":"42aa642f7c2f3a7903ff076d36240bca5db9de98","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5854":{"key":"0cc7f775e92adde871437f4b81d8c68688b53702","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5857":{"key":"07989df1f92af1e0e147066fd7ddac6d582d0bb3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5861":{"key":"916206df87e6f70b973fea7a3f9fcb2c5491dad9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5864":{"key":"a105571c260477118a0f0c9f727288841fbb32bb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5868":{"key":"6cccfb368983c72ede6785ec138071acfb6c97eb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5871":{"key":"63c72fd84c779b8d29d8475e94e47276278cb523","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5875":{"key":"eaba07600e4beef86751e88e0a3c4b53ee50cc7c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5878":{"key":"dbd1057145fb2a59b90b81cd86ba9b9a891529ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5882":{"key":"aaa0087de590789b9f486a5117bf368f820e4291","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5885":{"key":"fa47d408c041af780e4ee7a52747ab1c41057ec4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5889":{"key":"0babdeb7b21008b3b5227ffbc416147f6411100d","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5892":{"key":"a12895b5a67a78094488bc90cbc9ff73935bd077","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5896":{"key":"0802346a0e1fa83d92b29e4202640bae1a61aefe","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5899":{"key":"7eb2f613c6d7389578e744a096f2b70f5940e0ba","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5903":{"key":"411be0eecc5edb1ca96ded0749fb8092d7b39c1b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5906":{"key":"d7e2f78efc1264b8e9603b25fcfd127fbdf52a37","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5910":{"key":"bc46dfdc0798b03910006f2732a10bc7a7e1f846","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5913":{"key":"e83518f4a565b0c91141584e9f48aeef1f8d1405","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5917":{"key":"65565a6977788de124cb3dde5a5ab0f305f829cd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5920":{"key":"ae9515ebabbd4ed30a791f835f983cdfce944103","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5924":{"key":"8a29e18a2820c1b4052f4e7c62a45b141f052a17","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5927":{"key":"9beafe1cb5e2ad6b7bb87a2dcf116ddc8d945d9d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5931":{"key":"1e2ee945d34bd0035d8f41e77dd9d11d7f665218","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5934":{"key":"160d4d8a22a21e8a133d3dbe149763a1710771d0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5938":{"key":"3ddeaad64e4b9c5063530fa888c527173f264d64","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5941":{"key":"25d125abc83ec4f3a687dd4e13288bbc42930eac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5945":{"key":"5cebfaba3ff2ad32fe256c013ffba76dbc16b644","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5948":{"key":"4f87d9d0942a1aee0e0946f0a599cb5a6ede7ebd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5952":{"key":"78f772de4a49a7b8baee7621da07e585f9161d84","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5955":{"key":"05bc86a7f0707e01d51355b8e9bb7efddd827b38","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5959":{"key":"e4e7fce8f9c1f1aa97dc4ee54a6b790e8d336168","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5962":{"key":"b773978e5bce9706e860e3fb6e7f89d8e27c9b27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5966":{"key":"76db925902b809aec5dad526484395a18fb99056","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5969":{"key":"89374a5f040547803c6748fd6e7b8f9f1f675740","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5973":{"key":"8d68b45d8f65454e84d6e0f3b2e5ab22118d592a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5976":{"key":"5c1d60744d9ef2e82735d994a965400985d25878","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5980":{"key":"92eedb872b641f501efc3b6572643d8ca6d4a11e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5983":{"key":"5a9950a29738b452f77fbcfd83afe702dfe8699d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5987":{"key":"cf0575e016968fe4915434161a4dbc8c7cf2bd98","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5990":{"key":"1147fa004ecf89d13aab043b8490ac348ecac70e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5994":{"key":"b483ac6adc7f9971674150edae5b4071dda9ae3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:5997":{"key":"4cac12143ac9e59da5b1033310ac76bc1230db41","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:6004":{"key":"9f0378cb51ad545073c9b88eae292171c561d57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6007":{"key":"ae5a0876455e8ec8c2a41b192bcad7da2d14104d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6011":{"key":"b4565597e50d6e64e14e55004b593aa0901544d3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6014":{"key":"4a15edc63cb18824feee420a3c6cab6a9acb963c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6018":{"key":"f6b3a4b3bd316bc6111dff8096367f49baf0d1d9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6021":{"key":"6d2c421dc391ae8b9eab5085be4c5f30cce8812e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6025":{"key":"8c08fdb2256ff992d2776111401a1a88b2314109","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6028":{"key":"3bb4e381e85c91fdfbcbc1da071a6040d841e848","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6032":{"key":"910d4f7eb94b5534c606d021a51bafe1f3308792","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6035":{"key":"945311097cb31ef8ca275786d86db279f5944a6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6039":{"key":"7db1385a963851e89701212a782dcca6cd8b1885","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6042":{"key":"4710c41f9083affda7b87f988fd0f84887c9ede1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6046":{"key":"083d91dc6de5a63039bae193486b0404f24cb57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6049":{"key":"45b80e55b38dc4364cf36f7194453a967665a56e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6053":{"key":"4d299add71dae9e9964f73ad7753b9eac785d290","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6056":{"key":"093b243bccfa75c83cef6d0b67e6e7e8d63af1e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6060":{"key":"d03aae79496f1fa76e74ea63369c8649a6416868","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6063":{"key":"7774acd9e42ac8751c010bf8db27d9551d5c2167","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6067":{"key":"82e2fd349789dd04b199b1e03343c4a4bc617b3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6070":{"key":"101f0f03631afe594c32a5d99a4626e3775260c5","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6074":{"key":"cfc0c72e92f7b1c49917b14592adbdbe10b6f47b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6077":{"key":"aabf57a51ca1a3675944a9f3678c5ca80e9121cf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6081":{"key":"c1e6250fef0fc4366c92baffe53d5e1e22301816","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6084":{"key":"9100589d92788174c7737011f68db98fd8fad5db","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6088":{"key":"4a02ec293d168f56be27ae43e34a708bbbffe769","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6095":{"key":"ef1ee26872759d9734f712c94c45085b802a1dd1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6103":{"key":"2d9445fab18e9efcea509fb71db1f6d15ed595ab","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6106":{"key":"96776c72c81485b996c7b9addba71d26ac912d8c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6110":{"key":"1dc1b84980e4acefcd1d60a0a4012355986dab93","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6114":{"key":"a1fa2e4ba7538c432fd9110019803407db451b6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6120":{"key":"5a3b9dfac04ca91a56591ddfc445605e16a61c9c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6124":{"key":"f0b0830c70cebf931e355c722ddd436e52bf91f4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6130":{"key":"e9b1afa3fc3eb4e62d5a6aec9530d08773c0a6f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6134":{"key":"caa3cd2221cb277641b6695388881d8aa43825eb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6140":{"key":"8ded007d83f9ce8b2c5da16c18c3cec9e850393c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6144":{"key":"4640195eec9d9958a9ce05789ec6e4550810777c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6150":{"key":"e52f48c262b2a63e4342dde9f4b8f22e434a2961","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6154":{"key":"298dd3cc85c38552508e17e38db024dfbb7d5255","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6160":{"key":"08556e3364df303b72cd184805fd18fee8529a84","name":"Style=Round","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6162":{"key":"79cbe7f411986ea5aa29a3f6702bfeeac5c1557b","name":"Style=Sharp","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6165":{"key":"8ff0104852702e93f2dd81eac341090f5441339d","name":"Style=Round","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6167":{"key":"979c099dc3b86b97cd01f1f2d7a977d710eb1875","name":"Style=Sharp","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6170":{"key":"957f3a92e6dece4be2bf64fc4eeb88a0bd0e5e00","name":"Style=Round","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6172":{"key":"170440769bd800e4894d46430123af76e0594dfc","name":"Style=Sharp","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6175":{"key":"5c928372ac6d9808e32379f209b6d6690915bbb4","name":"Style=Round","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6177":{"key":"612520a67e7b6c160f4a2f64a438da3a35a8a273","name":"Style=Sharp","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6180":{"key":"5774908f6384cb73f21f03cbfe59cd3a7874a0f7","name":"Style=Round","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6182":{"key":"beeb9f6220f972371c3a7ad41b2661c20b67145c","name":"Style=Sharp","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6185":{"key":"f0bf7fc4025470f7d91d1a82ac92d0d744945572","name":"Style=Round","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6187":{"key":"a3ce6cba7445feefe7defcf5451d33b7b7ebaf09","name":"Style=Sharp","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6190":{"key":"6f0216ab57cf60aee480b3a211f723528d79ae88","name":"Style=Round","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6192":{"key":"86dc3b01570c47e7af83aebe6be24c9a397f96b1","name":"Style=Sharp","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6195":{"key":"f4d21d3873d47df9108574b0764323abaa6fe83c","name":"Style=Round","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6197":{"key":"fe466a7fbf425d74b4abdcc5606200dc4cdbf9dd","name":"Style=Sharp","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6200":{"key":"c8f2dbbd221276ab3bdb7e51ba2743ef4bfd7a5b","name":"Style=Round","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"176:6202":{"key":"61d9fd60b692ce3aad31f5f1083c3e605f4139b0","name":"Style=Sharp","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"1327:6":{"key":"0f0e7dc02e7268c77ccc5e9718f021f06713c52e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:12":{"key":"2b0cea65a8d0e28751a2f962d66224163a5ed9a1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:19":{"key":"0061e3fa9a3f5470e4628dbfd0b4460c59587851","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:22":{"key":"7ea8575c5784de9be05ef21c614f8e6c0030626b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:26":{"key":"c7704502b362bf0152726d4832b102871d63ef9e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:29":{"key":"ed88a121b8ede3e4804fc340094d4d57cdd359bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:33":{"key":"9ce64b4ccef24fc875d74ecb7eecfbae337490f9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:36":{"key":"dc99700f1f79ed83ff9e6a70203ffd1c638131c0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:40":{"key":"77237359bf3a8da2ec2ef764437e47ecb4815468","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:43":{"key":"f6a051bb8553c047bd3a2cda914ee49d4326ecd0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:47":{"key":"d9d2c37877ae21a84125c9e3a178cb5b145d949a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:50":{"key":"429f6bd5c921801c0a6ecb0315d7953e398aaf5a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:54":{"key":"b324ec390eb5a41787bf67d830cfd2831a4cefbd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:57":{"key":"597f959f6bd5d19982b4344b5573495c35045bac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:61":{"key":"85740b02daecd9b1a08ea1e8f29152b7d3e63392","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:64":{"key":"34f34c46f15262f75910c29c0b1c0be2cb4c6aa0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:68":{"key":"6b1ef4c9faba2bcab03c9e1114eecaae4b9c1957","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:71":{"key":"95077b93c3c92a1702630acd2ca295a1655e4029","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:75":{"key":"b26cd9084dff17220ccc5a09cb13ea6cc96597d0","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:78":{"key":"24b8023761de933d69f10d10e81d60e644471b1e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:82":{"key":"ce304891d61579eb5615999ce44e8df956efee13","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:88":{"key":"8e8896d3f398a7b4be53049d71092fc8f6f38727","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:95":{"key":"9f84fcfc754fa576875a98ba1ae4f53fa4e31ad2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:98":{"key":"61dc45faff7128b9ce6f0091f153df193da924bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:102":{"key":"51a0272d21f1d5a11a001658b55526883f885c28","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:105":{"key":"95aed67eb01054ab6c2cd96f6438d6557dc8a97a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:109":{"key":"86c3a42cb68d1acec80953fbdcf93394609f87ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:112":{"key":"f3b25f5363184a9a300ca1a8f78868cf0c0e5302","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:116":{"key":"bac0585c4fb927a8334611a1e3b7bcdfa5a3afd5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:119":{"key":"fb403a287320d5d712d36b0ea35a0095cb949373","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:123":{"key":"a158bbd2fd6cd028dc97280cdbf5dd6f7387a0de","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:126":{"key":"79bf1b5ce655aca85d5027a1e96d51311f7f9803","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:130":{"key":"051ea9c166f0f6a3bf03dc8bed44c1fe9a2803a3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:133":{"key":"af558341da5f6db9bf914e362f162e48bf8ce4f8","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:137":{"key":"908342d12521432e9ff9eafb9629de793386e21e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:140":{"key":"13b8d755660739006e0e507511527439735020d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:144":{"key":"95113bcd9bb8261bd80155de5cc6c36010ba4a3f","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:147":{"key":"319500cb124b69190bdb6f6da20dec34ec832d93","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:151":{"key":"c85ab7eaa1b723f5b42bd22b7995bd958a1f5184","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:154":{"key":"e89d6d01dc32a1b7d491c7df42f1654bdd4b6a2e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:158":{"key":"58b73e5e5ff28850cb7cecd2a1336cc9047a9091","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:161":{"key":"c74d04f500a613a946628aead05605bda7ef2fd2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:165":{"key":"9b44d9837a707ee972cddb5b8123125bdf4260d9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:168":{"key":"1e62df1969e15c20266858e7cfe5f8383f2b1524","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:172":{"key":"ceedd9ac6b7d82003c3c8b77a6d99da2d126f417","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:175":{"key":"176395e7dd95e4d0316d1f6a834b391abc878a35","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:179":{"key":"4a43e9086c59fe320d3dc843ef23eac002bc2c7e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:182":{"key":"43d490ef297c95d9c80ea2122fe53b5fd5a1b8d7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:186":{"key":"4438aaf75d7ce81218e4af464876f6b52a165296","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:193":{"key":"6fc95bba49619c0c695caba464da5434f8ed2042","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:201":{"key":"5341e67ebb5cdafe1211ae8dedee6582d5856c8b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:206":{"key":"607977c8616bbb363c213789032f5e178ce1091c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:212":{"key":"0375fd3d38521df3a707ebf2fa8fa4a4c589a94a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:215":{"key":"9474ddcd6e0a3fdac32d2d9614a41542c9dfbcaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:219":{"key":"13ad547a82dfc6b30b711d53bad280e2acf10073","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:230":{"key":"76cbd876b0f7315e9b4e64138f7b6aaae0b3fa86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:242":{"key":"6ce9834a0b7d15acd7ae232c08090b993dde930a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:249":{"key":"27eb321f43f070c282179391dcb6d4324c50a8ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:257":{"key":"e0fc49a9ffff46e84725e33ef829ad079ddf85a5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:264":{"key":"2abf5520087ac30cd5fd5f42ffacb4267c124e9b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:272":{"key":"bee8122c135b13e4c87ca0470341052fce6275b8","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:278":{"key":"12526b4f2a41955955b803b1e2f65ec3cfc5de25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:285":{"key":"e187a8e4a690d1606bdbb43844a6528a5425d652","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:301":{"key":"d759c6e885a9046d47bfc0dc722e2b083e2c078e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:318":{"key":"ef8d87cb5759a7c895582a1e3338b31176a71efd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:328":{"key":"e4a8b33467f3dd732e099d0e695b5db0c3d61e39","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:339":{"key":"14fed9e74b66575a85010d233a674a12f929a20c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:342":{"key":"81089400a10437497ab0c87c6ac138b2147b8eaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:346":{"key":"2bb0a8a7fc17390c2d1e5fb43fcf1259e2ecc1e1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:361":{"key":"e0872ab1a7e0d22daddc6e8b3532d5a3de142cb4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:377":{"key":"76fc99c6cdce20a7b0a910f311705f18dabd15e3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:390":{"key":"e5408357086aee5017d45d55c7587aa988f99363","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:404":{"key":"aa77153bf5e5346416994786a162c059532d7770","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:407":{"key":"32e2e28bf56a1187a0c439a1b96697032feec0c4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:411":{"key":"67fce6862c43b46fc855f3a896bbc74790180d80","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:414":{"key":"b9f05b8c79b6febf4ff96e70682f0df5264e5ca9","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:418":{"key":"c7519c8b87ccbf74174842944f33577e9bac0223","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:421":{"key":"1356de1874a8c44d2815270b7fc63ae1b98208d4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:425":{"key":"9c491b069d1ce2b594eeefc128dbb1541382f494","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:434":{"key":"4b08b06c74fe62ffa5dd7327ecd25e91e3a961bf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:444":{"key":"b9930d31d6cee2b6df8e8b039b66fbf2335f6199","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:457":{"key":"deea26c7fb94e2d2d25f3b627e183406820db063","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:471":{"key":"0f192071dd451bc40f1092453f8141903bb65d12","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:500":{"key":"219976a48d34d3955c6928d9c77350013d79cfdc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:530":{"key":"20f8ee11203013ba077be20a2d63cc10e7891b20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:539":{"key":"5abda6a3b25a7c902d5a1f3eaeb72c18166398d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:549":{"key":"791de3476f9b4d682311c49562bf747d8c189ffd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:557":{"key":"f0f60491a63a8a8a618e4bd84ff62f23a5724df1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:566":{"key":"d2b85de4c4c4dc5465b4a3b31ccea305cd029646","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:569":{"key":"d6f01f781b9a922017bc8c11e8aaae2f5b2358fc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:573":{"key":"72d6c3444a753c3846b5ce34533c3f5a27503d3a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:584":{"key":"d41b28e8bffda9228157b7d7c4d39ac11d29d308","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:596":{"key":"da5b3296e266afea93cbaadc145cd8947b9d66a2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:604":{"key":"840482b48045eaa15fbfd8feb5060be27b1bbde3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:613":{"key":"9922d90ed14e6462db60597c720b1f3babe68e7c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:616":{"key":"c6f6213a6802979c664aa9bd723b761ae9dcba92","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:620":{"key":"357c3df4a79e217f70a68e22ae560f352105abb2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:623":{"key":"3f71dbf6ea4a6c1bc2d2914c75b1a75c6d9c140b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:627":{"key":"19819c98b80625f0ba4e237976a874c9dae06a63","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:630":{"key":"4810f6dd3200718aeccaa68b8d0acfbec1ca2781","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:634":{"key":"1cf3035ebb3ee275e6975474a013330555797150","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:637":{"key":"ab59dd5ee33f275664f935ff7ea7dbd0be60d7a3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:641":{"key":"ab9143fe7333951348f162b9c35c144a1daa25da","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:644":{"key":"cae04d1faaa7705b77929c584c0485811760665e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:648":{"key":"02ba884bef3d7986ca807855863880766a7dd2d2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:654":{"key":"8a678ddf87fab5b2bfd8ed36c731f646e68ba8c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:661":{"key":"a207aaae5c7d75f67ad36294f65376ecfb738a01","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:664":{"key":"d2a1f8b4329dc9b22a890f22e237f9c8ee4e0adc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:668":{"key":"7b5931ed96438edf78642ebe2be7219408bbd839","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:673":{"key":"0b70cc1666a85e76e06619c66dcce28f81e5c8fa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:679":{"key":"2cdc6858dea4722c518638eab675bff0e6c15955","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:682":{"key":"1554ca67b95538b38d3feea9ec9e8b76bc97b4ef","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:686":{"key":"2e2280f5853fc7ae9764504cec346ffce8842f5d","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:695":{"key":"e16cd6648b938b9d1d5fb8d9ae8314182c112b77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:705":{"key":"7c6142516f91d9bad2d851a5839cf19fed57fbdd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:717":{"key":"3501a7a21024d1238447efe55712bacdf84ceafe","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:730":{"key":"188139807ff9cefe5ff90fcfe5fb5a0e27d2af64","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:744":{"key":"177984534909a700d16230bb0626228705d834f7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:759":{"key":"97c55557aec8dbece6e0c19fe237df45bab9b95b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:762":{"key":"44d8975ea1a103a8a51be0886d1b4427052ce5e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:766":{"key":"dd6513386abe56e74a3030022be436788570fee7","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:773":{"key":"3acda269c230760cedc723358e4cec2c36610a07","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:781":{"key":"8921a2f4b86b832bd127befa6b5001a0c44dd9ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:788":{"key":"d58e7adbe0f1cf377bac28f2aa895015f0219d25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:796":{"key":"388a1e670a4ac9a4807f68050ae2d76d57b60ab6","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:807":{"key":"2598cccc6735f59231d029ab25a4e548ae8028c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:819":{"key":"a3f0199e32b5a2ce7a030d2088e581b9ec60b17a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:822":{"key":"a151d2e87cc30912423dfa4d3aac7a85a84b0a86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:826":{"key":"c336aae64f5f5a8c97bd6cedbc74c72ff959a3af","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:829":{"key":"ec05f92261d42ff982f4926dfc394b85a7b5a852","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:833":{"key":"fcac28d46cd047b248f8c0074439eecc73525a71","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:838":{"key":"437ba6dd5f3dca301624eb0c11563a6d999d2699","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:844":{"key":"f38a3df728914b54139e28eefe13f82853ead490","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:851":{"key":"ff82ad09567b524edad555cb9b1d2f22029f5008","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:859":{"key":"e66b5ea5931cca13e5caf3f2ed433303d8c6df20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]},"1327:862":{"key":"c509479ff10b320f3137abc7853f2e020bd35d66","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]}},"componentSets":{"176:5662":{"key":"cbf0fe6f1493d9acb5f9da092c1e092661ffd5f7","name":"Add","description":"Plus, add, create, request","documentationLinks":[]},"176:5669":{"key":"eb347d64ad1a0ffea96e92bdd1fedaf91f894ebd","name":"Sort","description":"sort, reorder","documentationLinks":[]},"176:5676":{"key":"476c816bb2731239ef0d55b8874ff6852fe61fe4","name":"Content","description":"duplicate, copy, clipboard, Workcloud, WC","documentationLinks":[]},"176:5683":{"key":"a95e9a1b11930e82830dad91c4dd8f8c68b5369f","name":"Copy File","description":"","documentationLinks":[]},"176:5690":{"key":"3f9d8dfa8742bc26fccc9c0f6e1e90276411c4ba","name":"Remove Circle Outline","description":"Minus","documentationLinks":[]},"176:5697":{"key":"867aaef00117348017898031f8567926c802182a","name":"Add Circle Outline","description":"Plus","documentationLinks":[]},"176:5704":{"key":"1e516e7cbd288bc2f95f595ba2b4c25c089ec41c","name":"Remove Circle","description":"Minus, Workcloud, WC","documentationLinks":[]},"176:5711":{"key":"c2702ac3e63ecb4a29e3ac97764d2fbc64c5b922","name":"Block","description":"unclaim, cancel, do not, DNE, Workcloud, WC","documentationLinks":[]},"176:5718":{"key":"9076c146080074c5e99fd1f74bacfd5c54d36ee4","name":"Add Circle","description":"Plus","documentationLinks":[]},"176:5725":{"key":"983869598a5a08e238eb714b7375b4fbfdfbf148","name":"Remove","description":"Minus, remove, delete, Workcloud, WC","documentationLinks":[]},"176:5732":{"key":"b1f3ec1029872f0654476023993c070271e4434b","name":"Android","description":"OS","documentationLinks":[]},"176:5739":{"key":"02da4b5d3d168fc03bf72db45388cfff88cf6d4e","name":"Add Box","description":"Plus","documentationLinks":[]},"176:5746":{"key":"690bf611d9ba8d6a78c3c28fbe395ac44cc57675","name":"Remove Box","description":"Minus","documentationLinks":[]},"176:5753":{"key":"51059388245bb98ddb4f1cd0f2fd6ccf3fa6d2d7","name":"Push Pin","description":"pin, save, pushpin, mark, Workcloud, WC","documentationLinks":[]},"176:5760":{"key":"9d7edf3a6280c9fcbf34dbe9f552cdd3927c0412","name":"Send","description":"chat, message, communication, send, Workcloud, WC","documentationLinks":[]},"176:5767":{"key":"d0ba0d4e165c398d30f062dd1301e2c74c91adb0","name":"Backspace","description":"Delete, clear, remove, backspace, Workcloud, WC","documentationLinks":[]},"176:5774":{"key":"60d55f7bcc8939fba1646e93729c59f0e3417de6","name":"Flag","description":"flag, mark, Workcloud, WC","documentationLinks":[]},"176:5781":{"key":"edb8e60d1699e7d0d2e585ba93ed6989b652c835","name":"Save","description":"file, save","documentationLinks":[]},"176:5788":{"key":"855361f282b8997f75f6f26328f83c3eeef01e19","name":"Reply","description":"email, e-mail, envelope, message, reply, Workcloud, WC","documentationLinks":[]},"176:5795":{"key":"180f33ff8f0dcb0869f75101dd7e80cb36fb5739","name":"Redo","description":"redo, edit, Workcloud, WC","documentationLinks":[]},"176:5802":{"key":"55662773af7f6b841859247ab6599299fae78711","name":"Save Alt","description":"save, file, import, download, Workcloud, WC","documentationLinks":[]},"176:5809":{"key":"fcd14ef19ee15d947517edb0a13103ec0e575473","name":"Undo","description":"undo, edit, Workcloud, WC","documentationLinks":[]},"176:5816":{"key":"5c50319a70cef03422ea05db2574746f63de85a7","name":"Chart Pie","description":"report, analytics, chart, pie chart, pie-chart, piechart","documentationLinks":[]},"176:5822":{"key":"ff7d1cffd91c319c4a4cac169c4f4e291eb66314","name":"Email","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC","documentationLinks":[]},"176:5829":{"key":"2e842858b83493b6bff43874f51a467ccd2ae494","name":"Email Outline","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline","documentationLinks":[]},"176:5839":{"key":"f78e6558254b20c3a7d50c0a97e0e8b592358d55","name":"Scanner","description":"mobile","documentationLinks":[]},"176:5846":{"key":"5a9c331842ee93f6db77cf3730faf89f08ffa38a","name":"Printer","description":"print, printer, Workcloud, WC","documentationLinks":[]},"176:5853":{"key":"45364c041b3552011021e4aa4f94d4187382517d","name":"Cast","description":"Chrome","documentationLinks":[]},"176:5860":{"key":"c8d5aaa229a78646e816b04773c35117548d5a7e","name":"Cast Connected","description":"Chrome","documentationLinks":[]},"176:5867":{"key":"f364c6a6f68b48d6d03751bd316c8d62416273e5","name":"Desktop","description":"","documentationLinks":[]},"176:5874":{"key":"e1ae05ebc3b0eac945d2c64120de2dcdfb9c6185","name":"Devices Ecosystem","description":"","documentationLinks":[]},"176:5881":{"key":"7c7cfed104befae2ebdd932e4363cffe3733fdb9","name":"Device Settings","description":"","documentationLinks":[]},"176:5888":{"key":"1332d478aa097d9cb591848a1d2843ef2aed7421","name":"Headphones","description":"","documentationLinks":[]},"176:5895":{"key":"a7fd94e6b6f733e7eba00867ede1eadc8033acb9","name":"Keyboard","description":"keyboard, keypad, type, Workcloud, WC","documentationLinks":[]},"176:5902":{"key":"a7f3246b66215ea043b14e9530156c584cd65769","name":"Laptop","description":"Computer","documentationLinks":[]},"176:5909":{"key":"43688d3cefa72f2bc3237769d805bb1796044d93","name":"Memory","description":"Processor, Microprocessor","documentationLinks":[]},"176:5916":{"key":"a4c37dcc364c03c81b32b25191e6672ab1e2e6aa","name":"Monitor","description":"","documentationLinks":[]},"176:5923":{"key":"adc6052bc2b202f0437bcebd72a04926c80a8998","name":"Phone Android","description":"Mobile","documentationLinks":[]},"176:5930":{"key":"d33d761829524c20a1f6a6cc4e88a432dfe1f8cd","name":"Phone iPhone","description":"Mobile","documentationLinks":[]},"176:5937":{"key":"3266c82724c4f5cd69e1a861a6fa35e4b98841da","name":"Phonelink","description":"Connected","documentationLinks":[]},"176:5944":{"key":"03ba6ba94a31a4760796d8a35b229657969ed49d","name":"Security","description":"Protect, Protection, Shield","documentationLinks":[]},"176:5951":{"key":"4ffc9025404ffc8a3ef4c8e733f4d0fdbe3e4993","name":"Video Play","description":"","documentationLinks":[]},"176:5958":{"key":"8fee21bd48fef3f5536867ca0b483c5a52b445c3","name":"Smart Phone","description":"Mobile, phone, device, Workcloud, WC","documentationLinks":[]},"176:5965":{"key":"c3f5d07881ea9a4374491a1f1ec67cb7b104e558","name":"Speaker","description":"","documentationLinks":[]},"176:5972":{"key":"5b459d11e075ecf4bc663615c10f4a09e9cbaac0","name":"Tablet","description":"","documentationLinks":[]},"176:5979":{"key":"8dbef44fe722c85f87ed4aa2438446721a456065","name":"Tablet Mac","description":"iPad","documentationLinks":[]},"176:5986":{"key":"0c3278693479899a7c014cdff625a66b878bb920","name":"TV","description":"Television","documentationLinks":[]},"176:5993":{"key":"dd2fcb897604a454798081a77cb1a6693c6e5e60","name":"Watch","description":"Smartwatch","documentationLinks":[]},"176:6003":{"key":"026e47ecab4b5822d7a006cc0c34e2253425906f","name":"Finished Download","description":"Complete, Success, Done","documentationLinks":[]},"176:6010":{"key":"0975725ec5b32c1783247274f5197886d54fe2ab","name":"Downloading","description":"","documentationLinks":[]},"176:6017":{"key":"0c3d47e0b99b8a2d6a721011e5de86c98a3b3f13","name":"Cloud","description":"","documentationLinks":[]},"176:6024":{"key":"fa65f0dd571b1981d1ef36b1a0d92669928e856e","name":"Cloud Done","description":"Check, Check Mark, Mark","documentationLinks":[]},"176:6031":{"key":"bce46f0cde2d3029a213b4a083fe9424e3d5d652","name":"Cloud Download","description":"file, download, cloud, Workcloud, WC","documentationLinks":[]},"176:6038":{"key":"8cde2e1a8cdc8505bf98f68886e009b77d70dcab","name":"Cloud Outline","description":"","documentationLinks":[]},"176:6045":{"key":"1f9b23077a5cca2527be6b0e877b42b536318cef","name":"Cloud Upload","description":"file, upload, cloud, Workcloud, WC","documentationLinks":[]},"176:6052":{"key":"06e4af58fefc9796299155aa1d75bd36d75d72d0","name":"Cloud Off","description":"Offline","documentationLinks":[]},"176:6059":{"key":"41426d9912a342b838f7f3133c2e3a2eb49907a1","name":"Folder","description":"folder, Workcloud, WC","documentationLinks":[]},"176:6066":{"key":"0e855bdc2b0f8b1b76fd4f71195fa890b4f0abf8","name":"Create New Folder","description":"Add","documentationLinks":[]},"176:6073":{"key":"64511c4804a8a1ce6c515e2536961ce82ffdf562","name":"Folder Outline","description":"","documentationLinks":[]},"176:6080":{"key":"373f5fbab000865af43afc1eb53126927b9159ac","name":"Shared Folder","description":"Network, Access","documentationLinks":[]},"176:6087":{"key":"34353c2325dbbbc0d04e0776d55c57b96ba4f95e","name":"Grid View","description":"2x2","documentationLinks":[]},"176:6102":{"key":"898dce0f408dc79374d2796db8a66612408dfa2a","name":"Upload File","description":"","documentationLinks":[]},"176:6109":{"key":"b418ad93c74479f4abc83564943b693bfc108ade","name":"JPG Attach","description":"Type, File","documentationLinks":[]},"176:6119":{"key":"c1a90a0fc4209dd1ab8061fd92fef86a92f5be60","name":"PDF Attach","description":"Type, File","documentationLinks":[]},"176:6129":{"key":"c2cbc52a8984b918c5a105fc448f6cb8720653c3","name":"PNG Attach","description":"Type, File","documentationLinks":[]},"176:6139":{"key":"57338bc2a0b2839d80bc7c208a8e26055e98e479","name":"DOC Attach","description":"Type, File","documentationLinks":[]},"176:6149":{"key":"5ff5900c067b902dca74d5512cf2ec864ac16ca0","name":"PPT Attach","description":"Type, File","documentationLinks":[]},"176:6159":{"key":"d72a937dd7196d0162f7076aefced9f1536156e1","name":"Open New Off","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","documentationLinks":[]},"176:6164":{"key":"041a9e7f1ef241f385fff07aebfceaa97af1e93c","name":"Page Height","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6169":{"key":"ce53fdaf4694e4166c3a590e3144f5653d856624","name":"Page Width","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6174":{"key":"cf3a6a774cb9923b9976a4fea13f9fca8207652c","name":"Page Rotate","description":"Workcloud, WC, page rotate","documentationLinks":[]},"176:6179":{"key":"83ec664a107d1ac5360053807b6fc096ce84bff9","name":"Save","description":"Workcloud, WC, file, save","documentationLinks":[]},"176:6184":{"key":"51a6d9b8dcab30b3c3b1eb6e7605cda1dbc5205f","name":"Publish","description":"Workcloud, WC, file, publish","documentationLinks":[]},"176:6189":{"key":"e1e8cb0dd03cb7e59c4612d300e6dfdb4027f336","name":"File","description":"Workcloud, WC, file, note, paper","documentationLinks":[]},"176:6194":{"key":"9fc690ca5dc618d555d5ddda770e80ff005413dd","name":"Folder","description":"Workcloud, WC, project, folder, file","documentationLinks":[]},"176:6199":{"key":"fc7c807aecaf8e4ac414bda29cfec7a075ff6b33","name":"Maintenance","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","documentationLinks":[]},"1327:5":{"key":"fa74d772647bf4646618db5f5c3a1625d8070e14","name":"Life Guard","description":"Android","documentationLinks":[]},"1327:18":{"key":"7a9402271b9decfd5801a2639e9aca2cbfa252a1","name":"Mobility DNA","description":"","documentationLinks":[]},"1327:25":{"key":"cf1ae2a65281a6c0bccde0f117e0ad0839c86b2a","name":"TekSpeech Pro","description":"","documentationLinks":[]},"1327:32":{"key":"3459fffb48a486ea6a8c88acb530e9664538492a","name":"Enterprise Browser","description":"","documentationLinks":[]},"1327:39":{"key":"59fe9624af4661995fd21e528f5b4648b01146dc","name":"AppGallery","description":"Store","documentationLinks":[]},"1327:46":{"key":"27db2f0b9d39f7a51228101aa39556e8ba1ca7a7","name":"Workforce Connect","description":"WFC","documentationLinks":[]},"1327:53":{"key":"1171a60346cc1cc50a0e0bbd77e5fb1efbf66480","name":"SimulScan","description":"Signature","documentationLinks":[]},"1327:60":{"key":"81a24a04fa4a7f8c3ce4fb3f468e538a2a8c5af7","name":"Power Precision","description":"","documentationLinks":[]},"1327:67":{"key":"74d69f9036a58a631e3bf51ac020a1659331cdfe","name":"Power Precision +","description":"","documentationLinks":[]},"1327:74":{"key":"3fe69a0892bb641d3bb1c569b9c56f49f956c9ce","name":"Mobility Security","description":"","documentationLinks":[]},"1327:81":{"key":"24c0c7e84c3e5e0a9436b11f83869e8fb70bde2e","name":"StageNow","description":"","documentationLinks":[]},"1327:94":{"key":"ad3d6d802a7bc376fe7e4d2532750ce9fad2a888","name":"EMDK","description":"Toolbox","documentationLinks":[]},"1327:101":{"key":"fb744205c2bdf134b11377fac9e5fd0a0b07e543","name":"Enterprise Keyboard","description":"Setting","documentationLinks":[]},"1327:108":{"key":"90343edb43abc6c5142f6aee76bab35fd481d9a2","name":"MDM Toolkit","description":"","documentationLinks":[]},"1327:115":{"key":"02fa7e2ad504a72e11acec2aa2ad6341ab6c6330","name":"MX","description":"Mobility, Extensions","documentationLinks":[]},"1327:122":{"key":"a1ddca9e8af3f07d0af31d1b00b3ac4f021634ad","name":"RX","description":"Prescription","documentationLinks":[]},"1327:129":{"key":"a76a36e5bd7ba2d4a1668f08f35aab7d4436e160","name":"Setting Tool","description":"","documentationLinks":[]},"1327:136":{"key":"28d3f3d08802d32fb731e8034a5709857c1ba2c8","name":"Data Wedge","description":"","documentationLinks":[]},"1327:143":{"key":"dc8b8caef21c37879e6306a5458e3ca2963551c3","name":"Application Analytics","description":"","documentationLinks":[]},"1327:150":{"key":"1caf5d165efc3f7fb2ad7fa474ca4f24005e8a4c","name":"Swipe Assist","description":"","documentationLinks":[]},"1327:157":{"key":"064bd32633184eff705cd71f6edcc44f749fd972","name":"SmartDEX","description":"","documentationLinks":[]},"1327:164":{"key":"610e7daa0dbaa6eaa48f9dff0a89e0ae68567951","name":"Direct Connect","description":"","documentationLinks":[]},"1327:171":{"key":"6bd0ca2156087395a163934f50d09d50572bc25d","name":"Remote Control","description":"","documentationLinks":[]},"1327:178":{"key":"a8d43f8e262ada8ca60de953048f3bb08d6b7141","name":"Asset Tracker Lite","description":"","documentationLinks":[]},"1327:185":{"key":"c17737032ddbd06cec19ff34ada2f0a9ed63cf4d","name":"Voice Wedge","description":"","documentationLinks":[]},"1327:200":{"key":"11148f7c3482c0b2aa5d643389c04dfb337ae8ff","name":"Device Tracker","description":"","documentationLinks":[]},"1327:211":{"key":"fe317fda46a45fd752f3b525dcab6e80b47d9548","name":"WorryFree Wi-Fi","description":"","documentationLinks":[]},"1327:218":{"key":"737e6fa2fdfea23be063a19dcd0079cea879adbd","name":"Workstation Connect","description":"","documentationLinks":[]},"1327:241":{"key":"d6824832dd615e9a10cddcaf28b6a4c0dc6cbd60","name":"OEM Config","description":"","documentationLinks":[]},"1327:256":{"key":"1ac009970d754b3c737a53b6996879b083571ca2","name":"GMS Restricted Mode","description":"","documentationLinks":[]},"1327:271":{"key":"85842a1d05987316ec2a91199ab4ecd8c6746836","name":"Zero Touch","description":"","documentationLinks":[]},"1327:284":{"key":"d567c8b1b0cd0183c57e8afcf4b86158c5978005","name":"Smart TEK","description":"","documentationLinks":[]},"1327:317":{"key":"5b0018b335d85a73c564e03c3631c725d66d7f72","name":"OCR","description":"","documentationLinks":[]},"1327:338":{"key":"0939ae271428c3c19ecce31d8b158dda18d4e51b","name":"Smart TE","description":"","documentationLinks":[]},"1327:345":{"key":"73280896599d0125f3df190f7966d2561a0d0937","name":"Smart TE Lite","description":"","documentationLinks":[]},"1327:376":{"key":"c5dcb75e6cc0ccc1d2c5b3aca2ee81e532b4b970","name":"PRZM","description":"","documentationLinks":[]},"1327:403":{"key":"fdfc455f2955e2f4381ac792c59137289556cac2","name":"Multi Code Data Formatting","description":"","documentationLinks":[]},"1327:410":{"key":"9e09e39195a0b64458e2e91e61b15bd4c5a26278","name":"Remote Management","description":"","documentationLinks":[]},"1327:417":{"key":"3c7d3578a5900a50d9429a7c77a400c2d77a5d6f","name":"Preferred Symbol","description":"","documentationLinks":[]},"1327:424":{"key":"eb6f998106dc88eb8337031c815ab49f87db8f9e","name":"Wi-Fi Friendly Mode","description":"Bluetooth","documentationLinks":[]},"1327:443":{"key":"99f6e0c14701a750e74740a2827e03145d4ffce8","name":"Intelligent Document Capture","description":"","documentationLinks":[]},"1327:470":{"key":"b8f863f07cd1ba6ae16e0610022f3399f36daa52","name":"123Scan","description":"","documentationLinks":[]},"1327:529":{"key":"e8af8d378864c0da3586e579c4c7f3d5c0b6dcd6","name":"Scan To Connect","description":"","documentationLinks":[]},"1327:548":{"key":"b0e47b062dc3af80596f33682be6c7751e4c86aa","name":"Scanner Control Application","description":"","documentationLinks":[]},"1327:565":{"key":"d1f3555489cce24b0ebed9e7201eea601959e7fd","name":"Scan Speed Analytics","description":"","documentationLinks":[]},"1327:572":{"key":"ec8650e006f7dc37ff1e993ce27e93d7ad0023f4","name":"Remote Diagnostics","description":"","documentationLinks":[]},"1327:595":{"key":"7bcea349614d95637e66fddbcaf06b4e28d82a6c","name":"123 RFID","description":"","documentationLinks":[]},"1327:612":{"key":"fc84bd6800a2ce27e57a1c543db823a2373f7b2c","name":"Blood Bag Plus","description":"","documentationLinks":[]},"1327:619":{"key":"d361b920472b59a6c5aaccc635355bef6590fa59","name":"Label Plus","description":"","documentationLinks":[]},"1327:626":{"key":"9cc37a9080b52964bb289b494bf5aac21acc0263","name":"Virtual Tether","description":"","documentationLinks":[]},"1327:633":{"key":"57ec1170fb3193fc25828ea6c7e47277435eb973","name":"Link OS","description":"","documentationLinks":[]},"1327:640":{"key":"4223ad6dd6923de5e67b24653752704ce193fc67","name":"MDM Connectors","description":"","documentationLinks":[]},"1327:647":{"key":"898f55a1df23b3fcc4c14ddd528f330187f8e4d8","name":"Browser Print","description":"","documentationLinks":[]},"1327:660":{"key":"d1abf0f98ee9e45be644b4c06b4e136510835fd9","name":"Cloud Connect","description":"","documentationLinks":[]},"1327:667":{"key":"c060801462bcd862d679571dd5f92e2522f92b6e","name":"Virtual Devices","description":"","documentationLinks":[]},"1327:678":{"key":"9861ffb6d1475b8ff328535ef5a0930073101c66","name":"Enterprise Connectors","description":"","documentationLinks":[]},"1327:685":{"key":"ede69463bd0f227ce2017e9ce7b9437f239b09af","name":"Pairing Solutions","description":"","documentationLinks":[]},"1327:704":{"key":"7a8278746ace27d38a01520a4c99b85dc3f3f1a3","name":"Scan And Pair","description":"","documentationLinks":[]},"1327:729":{"key":"cb269e1ea9c076ae3250e6f73d0853a623046e0b","name":"Zebra Designer","description":"","documentationLinks":[]},"1327:758":{"key":"4eab2fd93528b3de22f4df8b0138a3cfb9a1febe","name":"PDF Direct","description":"Print","documentationLinks":[]},"1327:765":{"key":"a211c9d29afa6fa7a7e5cf0fa31b6efd81009513","name":"Print Station","description":"","documentationLinks":[]},"1327:780":{"key":"f45c8eba47d910cd95254fedda7736162f62ac56","name":"Printer Profile Manager","description":"","documentationLinks":[]},"1327:795":{"key":"6753cb421dd07c37c426c963ac7871720e3b59d5","name":"Zebra Setup Utility","description":"","documentationLinks":[]},"1327:818":{"key":"a137efbd957879ecc966c1dc0a8697dd0a4e6f33","name":"Bluetooth Management","description":"","documentationLinks":[]},"1327:825":{"key":"a555f9fb40298e035c402ccae06df3aa14c57433","name":"Zebra OneCare","description":"","documentationLinks":[]},"1327:832":{"key":"9d26c7dbda99cae2466479d2d917dc2f6db1f338","name":"Visibility Services","description":"","documentationLinks":[]},"1327:843":{"key":"992562e87360944835a797ca34c253cc7a203c59","name":"Print Secure","description":"","documentationLinks":[]},"1327:858":{"key":"bce454710c9baf25cac336be25a63caed030a5cf","name":"Design Tools","description":"","documentationLinks":[]}},"schemaVersion":0,"styles":{"1:2":{"key":"e4fa20f35d2c34a96a908621be4749c83c9aafcb","name":"Light Mode/Text/Default","styleType":"FILL","remote":true,"description":"Use:\nPrimary text for content, Enabled text"},"1:3":{"key":"8d192dd816c3d2df612048194a289aef1b69fa8d","name":"Standard/Large Display/Heading 5","styleType":"TEXT","remote":true,"description":""},"1:4":{"key":"bbb824378ad20239be10695b3664fabc0c149627","name":"Light Mode/Border/Default","styleType":"FILL","remote":true,"description":""},"1:5":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""},"176:625":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""}},"name":"IconsTestPage","lastModified":"2024-05-08T12:25:23Z","thumbnailUrl":"https://s3-alpha.figma.com/thumbnails/f1891b26-cbbc-4a9a-a7b1-2fd74ab7609a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWCR2CQHY4J%2F20240707%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240707T120000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=4c6bc306789d1fee2fe3bbf0f80444f74dc2363a4a663188803869eaf30e49d4","version":"6025593135","role":"owner","editorType":"figma","linkAccess":"inherit"} \ No newline at end of file +{"document":{"id":"0:0","name":"Document","type":"DOCUMENT","scrollBehavior":"SCROLLS","children":[{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"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":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"}}]},"components":{"176:5663":{"key":"bf07221265357cac7113413da91bbd25e4d95bc2","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5666":{"key":"37e5859e9888b39c556dbbc7f534cd22d33fccf1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5670":{"key":"4a646b8f23f9fa19ce5776d8b844eff4e3998a92","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5673":{"key":"f3e38a1df3d2a0dd143c59369802031b01f5eba4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5677":{"key":"be0cce59ad61d9da24dd68feeccb95b91d2b8e6f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5680":{"key":"69b6781d64a23e01377d64661a213d688088fb77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5684":{"key":"3952dee885bfac2fd916497e3499f36ee497930a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5687":{"key":"0bf1042906eff5c0a8e372f3498aec15dc62e2f2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5691":{"key":"f0c83ab82052eae1c32899d1969cf1340c2171cb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5694":{"key":"02883f3e322c0f34d266bbcf40717628783471ae","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5698":{"key":"77c8ba1775d2e118e15850b9714609583a961f50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5701":{"key":"54b26c0d79e51f0042d9655d6674a3680da76a24","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5705":{"key":"60997624acf02a8ca29b468419571610900bb7a4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5708":{"key":"595c3dc44f8f763f0220a727a0d00ad52994366e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5712":{"key":"996c8bc6987d808784ffa85766c9043862c36ac0","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5715":{"key":"a24c37ae2b697cd2564920f6f3bd9ef0bfe9b942","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5719":{"key":"6884aa47b070b5c5b107e85663b09832ca47105b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5722":{"key":"f7634a6fee0c33d8cdcf9184b8350ff10bf5670a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5726":{"key":"0ddf6d8c4dcf36fe6d3908fc129aede965b9a182","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5729":{"key":"b70fd7183395df9e3c690821b319a97a5d54c72f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5733":{"key":"659dfb67d970c19aca03864f26fb56d8c3614c50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5736":{"key":"8927c066336eb7d109bc4a355491e3909be59538","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5740":{"key":"f8ad66e31add1e1fd3b51a00eb8df963e8f64cca","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5743":{"key":"f2f07d0efd39e8626b83b50f05eb220945110245","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5747":{"key":"3cbec281a7ea74297c79a1e5654c39f60249c515","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5750":{"key":"e9c063d498b06612d16f8e6200baa5153d1fd2ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5754":{"key":"08ef5c3b37b0b9867e5221cb3bb74ea24f68fd14","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5757":{"key":"f4b93f51e74eb1bf89b6aaccda161e643d162191","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5761":{"key":"57076834105d23117f790bb0559015ea5e4dbad4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5764":{"key":"eb41de7d6bdfe8c176af1869b44bf336ec439585","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5768":{"key":"348a9cfc5fcb788c0256a61b0413bfaf8a715977","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5771":{"key":"849b66c2bac8b3a6feb7aff32efca3711e692859","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5775":{"key":"e27dbf6aa03bfa1ce82645524479d87c547b5a05","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5778":{"key":"cc2168eee3309e11de97d001f05e8db6ccddfb27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5782":{"key":"ac0ac344b675c0f1c6803cd2379463b94f652ccb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5785":{"key":"b9b43465c2c93e41cffbe2e928ae22f6b5e378e3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5789":{"key":"c900d0bebfe7d7c1bf5933c3d75089755d5cb859","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5792":{"key":"01a0dda94fbb581616e60c6cd1ccbd5a331ded4d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5796":{"key":"cdbf5d03b1101c8c26c6e49c3c2370c20d71802e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5799":{"key":"f56a9820bac433ed44240d76877698953d9f3eb1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5803":{"key":"adc4222edf1df2950da08914b0ea636b9b0b1d66","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5806":{"key":"48d290d322a29078e3cb7313e244314ed32fafaf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5810":{"key":"e3a5efe9cf12b2a379b2886d9ffff25cbe243b33","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5813":{"key":"386d2acab0cb44238277235f5f1bd5c3093426b2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5817":{"key":"847a511f71f74f216e7910ec1a63ac78f569ba96","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5820":{"key":"f4eb7d7393f7af13ba16d3c2d3c5a629441cdd8c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5823":{"key":"2fc2428ecea6351cd8e9269bbb43b9762daa66f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5826":{"key":"d3d8ecdc0def6e4ca5dc701e1788d01b2f0a5c91","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5830":{"key":"18f43d394e408f315a1d502ebb65e2dea27dffd3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5833":{"key":"4efe6ddc1b783f4ca6161469240a210c05c7e10f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5840":{"key":"e9d7c323d2d837d94910f68aec2e56c066fc47fd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5843":{"key":"54711c8e12c32737a18b548b80f20b94ba708607","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5847":{"key":"d8dd1f3930bfaf9425be0e501d038ae66046dfb8","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5850":{"key":"42aa642f7c2f3a7903ff076d36240bca5db9de98","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5854":{"key":"0cc7f775e92adde871437f4b81d8c68688b53702","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5857":{"key":"07989df1f92af1e0e147066fd7ddac6d582d0bb3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5861":{"key":"916206df87e6f70b973fea7a3f9fcb2c5491dad9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5864":{"key":"a105571c260477118a0f0c9f727288841fbb32bb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5868":{"key":"6cccfb368983c72ede6785ec138071acfb6c97eb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5871":{"key":"63c72fd84c779b8d29d8475e94e47276278cb523","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5875":{"key":"eaba07600e4beef86751e88e0a3c4b53ee50cc7c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5878":{"key":"dbd1057145fb2a59b90b81cd86ba9b9a891529ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5882":{"key":"aaa0087de590789b9f486a5117bf368f820e4291","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5885":{"key":"fa47d408c041af780e4ee7a52747ab1c41057ec4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5889":{"key":"0babdeb7b21008b3b5227ffbc416147f6411100d","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5892":{"key":"a12895b5a67a78094488bc90cbc9ff73935bd077","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5896":{"key":"0802346a0e1fa83d92b29e4202640bae1a61aefe","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5899":{"key":"7eb2f613c6d7389578e744a096f2b70f5940e0ba","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5903":{"key":"411be0eecc5edb1ca96ded0749fb8092d7b39c1b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5906":{"key":"d7e2f78efc1264b8e9603b25fcfd127fbdf52a37","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5910":{"key":"bc46dfdc0798b03910006f2732a10bc7a7e1f846","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5913":{"key":"e83518f4a565b0c91141584e9f48aeef1f8d1405","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5917":{"key":"65565a6977788de124cb3dde5a5ab0f305f829cd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5920":{"key":"ae9515ebabbd4ed30a791f835f983cdfce944103","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5924":{"key":"8a29e18a2820c1b4052f4e7c62a45b141f052a17","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5927":{"key":"9beafe1cb5e2ad6b7bb87a2dcf116ddc8d945d9d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5931":{"key":"1e2ee945d34bd0035d8f41e77dd9d11d7f665218","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5934":{"key":"160d4d8a22a21e8a133d3dbe149763a1710771d0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5938":{"key":"3ddeaad64e4b9c5063530fa888c527173f264d64","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5941":{"key":"25d125abc83ec4f3a687dd4e13288bbc42930eac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5945":{"key":"5cebfaba3ff2ad32fe256c013ffba76dbc16b644","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5948":{"key":"4f87d9d0942a1aee0e0946f0a599cb5a6ede7ebd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5952":{"key":"78f772de4a49a7b8baee7621da07e585f9161d84","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5955":{"key":"05bc86a7f0707e01d51355b8e9bb7efddd827b38","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5959":{"key":"e4e7fce8f9c1f1aa97dc4ee54a6b790e8d336168","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5962":{"key":"b773978e5bce9706e860e3fb6e7f89d8e27c9b27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5966":{"key":"76db925902b809aec5dad526484395a18fb99056","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5969":{"key":"89374a5f040547803c6748fd6e7b8f9f1f675740","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5973":{"key":"8d68b45d8f65454e84d6e0f3b2e5ab22118d592a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5976":{"key":"5c1d60744d9ef2e82735d994a965400985d25878","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5980":{"key":"92eedb872b641f501efc3b6572643d8ca6d4a11e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5983":{"key":"5a9950a29738b452f77fbcfd83afe702dfe8699d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5987":{"key":"cf0575e016968fe4915434161a4dbc8c7cf2bd98","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5990":{"key":"1147fa004ecf89d13aab043b8490ac348ecac70e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5994":{"key":"b483ac6adc7f9971674150edae5b4071dda9ae3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:5997":{"key":"4cac12143ac9e59da5b1033310ac76bc1230db41","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:6004":{"key":"9f0378cb51ad545073c9b88eae292171c561d57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6007":{"key":"ae5a0876455e8ec8c2a41b192bcad7da2d14104d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6011":{"key":"b4565597e50d6e64e14e55004b593aa0901544d3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6014":{"key":"4a15edc63cb18824feee420a3c6cab6a9acb963c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6018":{"key":"f6b3a4b3bd316bc6111dff8096367f49baf0d1d9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6021":{"key":"6d2c421dc391ae8b9eab5085be4c5f30cce8812e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6025":{"key":"8c08fdb2256ff992d2776111401a1a88b2314109","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6028":{"key":"3bb4e381e85c91fdfbcbc1da071a6040d841e848","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6032":{"key":"910d4f7eb94b5534c606d021a51bafe1f3308792","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6035":{"key":"945311097cb31ef8ca275786d86db279f5944a6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6039":{"key":"7db1385a963851e89701212a782dcca6cd8b1885","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6042":{"key":"4710c41f9083affda7b87f988fd0f84887c9ede1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6046":{"key":"083d91dc6de5a63039bae193486b0404f24cb57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6049":{"key":"45b80e55b38dc4364cf36f7194453a967665a56e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6053":{"key":"4d299add71dae9e9964f73ad7753b9eac785d290","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6056":{"key":"093b243bccfa75c83cef6d0b67e6e7e8d63af1e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6060":{"key":"d03aae79496f1fa76e74ea63369c8649a6416868","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6063":{"key":"7774acd9e42ac8751c010bf8db27d9551d5c2167","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6067":{"key":"82e2fd349789dd04b199b1e03343c4a4bc617b3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6070":{"key":"101f0f03631afe594c32a5d99a4626e3775260c5","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6074":{"key":"cfc0c72e92f7b1c49917b14592adbdbe10b6f47b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6077":{"key":"aabf57a51ca1a3675944a9f3678c5ca80e9121cf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6081":{"key":"c1e6250fef0fc4366c92baffe53d5e1e22301816","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6084":{"key":"9100589d92788174c7737011f68db98fd8fad5db","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6088":{"key":"4a02ec293d168f56be27ae43e34a708bbbffe769","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6095":{"key":"ef1ee26872759d9734f712c94c45085b802a1dd1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6103":{"key":"2d9445fab18e9efcea509fb71db1f6d15ed595ab","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6106":{"key":"96776c72c81485b996c7b9addba71d26ac912d8c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6110":{"key":"1dc1b84980e4acefcd1d60a0a4012355986dab93","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6114":{"key":"a1fa2e4ba7538c432fd9110019803407db451b6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6120":{"key":"5a3b9dfac04ca91a56591ddfc445605e16a61c9c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6124":{"key":"f0b0830c70cebf931e355c722ddd436e52bf91f4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6130":{"key":"e9b1afa3fc3eb4e62d5a6aec9530d08773c0a6f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6134":{"key":"caa3cd2221cb277641b6695388881d8aa43825eb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6140":{"key":"8ded007d83f9ce8b2c5da16c18c3cec9e850393c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6144":{"key":"4640195eec9d9958a9ce05789ec6e4550810777c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6150":{"key":"e52f48c262b2a63e4342dde9f4b8f22e434a2961","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6154":{"key":"298dd3cc85c38552508e17e38db024dfbb7d5255","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6160":{"key":"08556e3364df303b72cd184805fd18fee8529a84","name":"Style=Round","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6162":{"key":"79cbe7f411986ea5aa29a3f6702bfeeac5c1557b","name":"Style=Sharp","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6165":{"key":"8ff0104852702e93f2dd81eac341090f5441339d","name":"Style=Round","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6167":{"key":"979c099dc3b86b97cd01f1f2d7a977d710eb1875","name":"Style=Sharp","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6170":{"key":"957f3a92e6dece4be2bf64fc4eeb88a0bd0e5e00","name":"Style=Round","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6172":{"key":"170440769bd800e4894d46430123af76e0594dfc","name":"Style=Sharp","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6175":{"key":"5c928372ac6d9808e32379f209b6d6690915bbb4","name":"Style=Round","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6177":{"key":"612520a67e7b6c160f4a2f64a438da3a35a8a273","name":"Style=Sharp","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6180":{"key":"5774908f6384cb73f21f03cbfe59cd3a7874a0f7","name":"Style=Round","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6182":{"key":"beeb9f6220f972371c3a7ad41b2661c20b67145c","name":"Style=Sharp","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6185":{"key":"f0bf7fc4025470f7d91d1a82ac92d0d744945572","name":"Style=Round","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6187":{"key":"a3ce6cba7445feefe7defcf5451d33b7b7ebaf09","name":"Style=Sharp","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6190":{"key":"6f0216ab57cf60aee480b3a211f723528d79ae88","name":"Style=Round","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6192":{"key":"86dc3b01570c47e7af83aebe6be24c9a397f96b1","name":"Style=Sharp","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6195":{"key":"f4d21d3873d47df9108574b0764323abaa6fe83c","name":"Style=Round","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6197":{"key":"fe466a7fbf425d74b4abdcc5606200dc4cdbf9dd","name":"Style=Sharp","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6200":{"key":"c8f2dbbd221276ab3bdb7e51ba2743ef4bfd7a5b","name":"Style=Round","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"176:6202":{"key":"61d9fd60b692ce3aad31f5f1083c3e605f4139b0","name":"Style=Sharp","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"1327:6":{"key":"0f0e7dc02e7268c77ccc5e9718f021f06713c52e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:12":{"key":"2b0cea65a8d0e28751a2f962d66224163a5ed9a1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:19":{"key":"0061e3fa9a3f5470e4628dbfd0b4460c59587851","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:22":{"key":"7ea8575c5784de9be05ef21c614f8e6c0030626b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:26":{"key":"c7704502b362bf0152726d4832b102871d63ef9e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:29":{"key":"ed88a121b8ede3e4804fc340094d4d57cdd359bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:33":{"key":"9ce64b4ccef24fc875d74ecb7eecfbae337490f9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:36":{"key":"dc99700f1f79ed83ff9e6a70203ffd1c638131c0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:40":{"key":"77237359bf3a8da2ec2ef764437e47ecb4815468","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:43":{"key":"f6a051bb8553c047bd3a2cda914ee49d4326ecd0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:47":{"key":"d9d2c37877ae21a84125c9e3a178cb5b145d949a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:50":{"key":"429f6bd5c921801c0a6ecb0315d7953e398aaf5a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:54":{"key":"b324ec390eb5a41787bf67d830cfd2831a4cefbd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:57":{"key":"597f959f6bd5d19982b4344b5573495c35045bac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:61":{"key":"85740b02daecd9b1a08ea1e8f29152b7d3e63392","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:64":{"key":"34f34c46f15262f75910c29c0b1c0be2cb4c6aa0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:68":{"key":"6b1ef4c9faba2bcab03c9e1114eecaae4b9c1957","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:71":{"key":"95077b93c3c92a1702630acd2ca295a1655e4029","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:75":{"key":"b26cd9084dff17220ccc5a09cb13ea6cc96597d0","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:78":{"key":"24b8023761de933d69f10d10e81d60e644471b1e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:82":{"key":"ce304891d61579eb5615999ce44e8df956efee13","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:88":{"key":"8e8896d3f398a7b4be53049d71092fc8f6f38727","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:95":{"key":"9f84fcfc754fa576875a98ba1ae4f53fa4e31ad2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:98":{"key":"61dc45faff7128b9ce6f0091f153df193da924bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:102":{"key":"51a0272d21f1d5a11a001658b55526883f885c28","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:105":{"key":"95aed67eb01054ab6c2cd96f6438d6557dc8a97a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:109":{"key":"86c3a42cb68d1acec80953fbdcf93394609f87ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:112":{"key":"f3b25f5363184a9a300ca1a8f78868cf0c0e5302","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:116":{"key":"bac0585c4fb927a8334611a1e3b7bcdfa5a3afd5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:119":{"key":"fb403a287320d5d712d36b0ea35a0095cb949373","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:123":{"key":"a158bbd2fd6cd028dc97280cdbf5dd6f7387a0de","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:126":{"key":"79bf1b5ce655aca85d5027a1e96d51311f7f9803","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:130":{"key":"051ea9c166f0f6a3bf03dc8bed44c1fe9a2803a3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:133":{"key":"af558341da5f6db9bf914e362f162e48bf8ce4f8","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:137":{"key":"908342d12521432e9ff9eafb9629de793386e21e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:140":{"key":"13b8d755660739006e0e507511527439735020d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:144":{"key":"95113bcd9bb8261bd80155de5cc6c36010ba4a3f","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:147":{"key":"319500cb124b69190bdb6f6da20dec34ec832d93","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:151":{"key":"c85ab7eaa1b723f5b42bd22b7995bd958a1f5184","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:154":{"key":"e89d6d01dc32a1b7d491c7df42f1654bdd4b6a2e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:158":{"key":"58b73e5e5ff28850cb7cecd2a1336cc9047a9091","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:161":{"key":"c74d04f500a613a946628aead05605bda7ef2fd2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:165":{"key":"9b44d9837a707ee972cddb5b8123125bdf4260d9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:168":{"key":"1e62df1969e15c20266858e7cfe5f8383f2b1524","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:172":{"key":"ceedd9ac6b7d82003c3c8b77a6d99da2d126f417","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:175":{"key":"176395e7dd95e4d0316d1f6a834b391abc878a35","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:179":{"key":"4a43e9086c59fe320d3dc843ef23eac002bc2c7e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:182":{"key":"43d490ef297c95d9c80ea2122fe53b5fd5a1b8d7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:186":{"key":"4438aaf75d7ce81218e4af464876f6b52a165296","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:193":{"key":"6fc95bba49619c0c695caba464da5434f8ed2042","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:201":{"key":"5341e67ebb5cdafe1211ae8dedee6582d5856c8b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:206":{"key":"607977c8616bbb363c213789032f5e178ce1091c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:212":{"key":"0375fd3d38521df3a707ebf2fa8fa4a4c589a94a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:215":{"key":"9474ddcd6e0a3fdac32d2d9614a41542c9dfbcaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:219":{"key":"13ad547a82dfc6b30b711d53bad280e2acf10073","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:230":{"key":"76cbd876b0f7315e9b4e64138f7b6aaae0b3fa86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:242":{"key":"6ce9834a0b7d15acd7ae232c08090b993dde930a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:249":{"key":"27eb321f43f070c282179391dcb6d4324c50a8ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:257":{"key":"e0fc49a9ffff46e84725e33ef829ad079ddf85a5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:264":{"key":"2abf5520087ac30cd5fd5f42ffacb4267c124e9b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:272":{"key":"bee8122c135b13e4c87ca0470341052fce6275b8","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:278":{"key":"12526b4f2a41955955b803b1e2f65ec3cfc5de25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:285":{"key":"e187a8e4a690d1606bdbb43844a6528a5425d652","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:301":{"key":"d759c6e885a9046d47bfc0dc722e2b083e2c078e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:318":{"key":"ef8d87cb5759a7c895582a1e3338b31176a71efd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:328":{"key":"e4a8b33467f3dd732e099d0e695b5db0c3d61e39","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:339":{"key":"14fed9e74b66575a85010d233a674a12f929a20c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:342":{"key":"81089400a10437497ab0c87c6ac138b2147b8eaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:346":{"key":"2bb0a8a7fc17390c2d1e5fb43fcf1259e2ecc1e1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:361":{"key":"e0872ab1a7e0d22daddc6e8b3532d5a3de142cb4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:377":{"key":"76fc99c6cdce20a7b0a910f311705f18dabd15e3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:390":{"key":"e5408357086aee5017d45d55c7587aa988f99363","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:404":{"key":"aa77153bf5e5346416994786a162c059532d7770","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:407":{"key":"32e2e28bf56a1187a0c439a1b96697032feec0c4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:411":{"key":"67fce6862c43b46fc855f3a896bbc74790180d80","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:414":{"key":"b9f05b8c79b6febf4ff96e70682f0df5264e5ca9","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:418":{"key":"c7519c8b87ccbf74174842944f33577e9bac0223","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:421":{"key":"1356de1874a8c44d2815270b7fc63ae1b98208d4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:425":{"key":"9c491b069d1ce2b594eeefc128dbb1541382f494","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:434":{"key":"4b08b06c74fe62ffa5dd7327ecd25e91e3a961bf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:444":{"key":"b9930d31d6cee2b6df8e8b039b66fbf2335f6199","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:457":{"key":"deea26c7fb94e2d2d25f3b627e183406820db063","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:471":{"key":"0f192071dd451bc40f1092453f8141903bb65d12","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:500":{"key":"219976a48d34d3955c6928d9c77350013d79cfdc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:530":{"key":"20f8ee11203013ba077be20a2d63cc10e7891b20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:539":{"key":"5abda6a3b25a7c902d5a1f3eaeb72c18166398d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:549":{"key":"791de3476f9b4d682311c49562bf747d8c189ffd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:557":{"key":"f0f60491a63a8a8a618e4bd84ff62f23a5724df1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:566":{"key":"d2b85de4c4c4dc5465b4a3b31ccea305cd029646","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:569":{"key":"d6f01f781b9a922017bc8c11e8aaae2f5b2358fc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:573":{"key":"72d6c3444a753c3846b5ce34533c3f5a27503d3a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:584":{"key":"d41b28e8bffda9228157b7d7c4d39ac11d29d308","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:596":{"key":"da5b3296e266afea93cbaadc145cd8947b9d66a2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:604":{"key":"840482b48045eaa15fbfd8feb5060be27b1bbde3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:613":{"key":"9922d90ed14e6462db60597c720b1f3babe68e7c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:616":{"key":"c6f6213a6802979c664aa9bd723b761ae9dcba92","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:620":{"key":"357c3df4a79e217f70a68e22ae560f352105abb2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:623":{"key":"3f71dbf6ea4a6c1bc2d2914c75b1a75c6d9c140b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:627":{"key":"19819c98b80625f0ba4e237976a874c9dae06a63","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:630":{"key":"4810f6dd3200718aeccaa68b8d0acfbec1ca2781","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:634":{"key":"1cf3035ebb3ee275e6975474a013330555797150","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:637":{"key":"ab59dd5ee33f275664f935ff7ea7dbd0be60d7a3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:641":{"key":"ab9143fe7333951348f162b9c35c144a1daa25da","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:644":{"key":"cae04d1faaa7705b77929c584c0485811760665e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:648":{"key":"02ba884bef3d7986ca807855863880766a7dd2d2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:654":{"key":"8a678ddf87fab5b2bfd8ed36c731f646e68ba8c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:661":{"key":"a207aaae5c7d75f67ad36294f65376ecfb738a01","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:664":{"key":"d2a1f8b4329dc9b22a890f22e237f9c8ee4e0adc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:668":{"key":"7b5931ed96438edf78642ebe2be7219408bbd839","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:673":{"key":"0b70cc1666a85e76e06619c66dcce28f81e5c8fa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:679":{"key":"2cdc6858dea4722c518638eab675bff0e6c15955","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:682":{"key":"1554ca67b95538b38d3feea9ec9e8b76bc97b4ef","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:686":{"key":"2e2280f5853fc7ae9764504cec346ffce8842f5d","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:695":{"key":"e16cd6648b938b9d1d5fb8d9ae8314182c112b77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:705":{"key":"7c6142516f91d9bad2d851a5839cf19fed57fbdd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:717":{"key":"3501a7a21024d1238447efe55712bacdf84ceafe","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:730":{"key":"188139807ff9cefe5ff90fcfe5fb5a0e27d2af64","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:744":{"key":"177984534909a700d16230bb0626228705d834f7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:759":{"key":"97c55557aec8dbece6e0c19fe237df45bab9b95b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:762":{"key":"44d8975ea1a103a8a51be0886d1b4427052ce5e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:766":{"key":"dd6513386abe56e74a3030022be436788570fee7","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:773":{"key":"3acda269c230760cedc723358e4cec2c36610a07","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:781":{"key":"8921a2f4b86b832bd127befa6b5001a0c44dd9ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:788":{"key":"d58e7adbe0f1cf377bac28f2aa895015f0219d25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:796":{"key":"388a1e670a4ac9a4807f68050ae2d76d57b60ab6","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:807":{"key":"2598cccc6735f59231d029ab25a4e548ae8028c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:819":{"key":"a3f0199e32b5a2ce7a030d2088e581b9ec60b17a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:822":{"key":"a151d2e87cc30912423dfa4d3aac7a85a84b0a86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:826":{"key":"c336aae64f5f5a8c97bd6cedbc74c72ff959a3af","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:829":{"key":"ec05f92261d42ff982f4926dfc394b85a7b5a852","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:833":{"key":"fcac28d46cd047b248f8c0074439eecc73525a71","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:838":{"key":"437ba6dd5f3dca301624eb0c11563a6d999d2699","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:844":{"key":"f38a3df728914b54139e28eefe13f82853ead490","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:851":{"key":"ff82ad09567b524edad555cb9b1d2f22029f5008","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:859":{"key":"e66b5ea5931cca13e5caf3f2ed433303d8c6df20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]},"1327:862":{"key":"c509479ff10b320f3137abc7853f2e020bd35d66","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]}},"componentSets":{"176:5662":{"key":"cbf0fe6f1493d9acb5f9da092c1e092661ffd5f7","name":"Add","description":"Plus, add, create, request","documentationLinks":[]},"176:5669":{"key":"eb347d64ad1a0ffea96e92bdd1fedaf91f894ebd","name":"Sort","description":"sort, reorder","documentationLinks":[]},"176:5676":{"key":"476c816bb2731239ef0d55b8874ff6852fe61fe4","name":"Content","description":"duplicate, copy, clipboard, Workcloud, WC","documentationLinks":[]},"176:5683":{"key":"a95e9a1b11930e82830dad91c4dd8f8c68b5369f","name":"Copy File","description":"","documentationLinks":[]},"176:5690":{"key":"3f9d8dfa8742bc26fccc9c0f6e1e90276411c4ba","name":"Remove Circle Outline","description":"Minus","documentationLinks":[]},"176:5697":{"key":"867aaef00117348017898031f8567926c802182a","name":"Add Circle Outline","description":"Plus","documentationLinks":[]},"176:5704":{"key":"1e516e7cbd288bc2f95f595ba2b4c25c089ec41c","name":"Remove Circle","description":"Minus, Workcloud, WC","documentationLinks":[]},"176:5711":{"key":"c2702ac3e63ecb4a29e3ac97764d2fbc64c5b922","name":"Block","description":"unclaim, cancel, do not, DNE, Workcloud, WC","documentationLinks":[]},"176:5718":{"key":"9076c146080074c5e99fd1f74bacfd5c54d36ee4","name":"Add Circle","description":"Plus","documentationLinks":[]},"176:5725":{"key":"983869598a5a08e238eb714b7375b4fbfdfbf148","name":"Remove","description":"Minus, remove, delete, Workcloud, WC","documentationLinks":[]},"176:5732":{"key":"b1f3ec1029872f0654476023993c070271e4434b","name":"Android","description":"OS","documentationLinks":[]},"176:5739":{"key":"02da4b5d3d168fc03bf72db45388cfff88cf6d4e","name":"Add Box","description":"Plus","documentationLinks":[]},"176:5746":{"key":"690bf611d9ba8d6a78c3c28fbe395ac44cc57675","name":"Remove Box","description":"Minus","documentationLinks":[]},"176:5753":{"key":"51059388245bb98ddb4f1cd0f2fd6ccf3fa6d2d7","name":"Push Pin","description":"pin, save, pushpin, mark, Workcloud, WC","documentationLinks":[]},"176:5760":{"key":"9d7edf3a6280c9fcbf34dbe9f552cdd3927c0412","name":"Send","description":"chat, message, communication, send, Workcloud, WC","documentationLinks":[]},"176:5767":{"key":"d0ba0d4e165c398d30f062dd1301e2c74c91adb0","name":"Backspace","description":"Delete, clear, remove, backspace, Workcloud, WC","documentationLinks":[]},"176:5774":{"key":"60d55f7bcc8939fba1646e93729c59f0e3417de6","name":"Flag","description":"flag, mark, Workcloud, WC","documentationLinks":[]},"176:5781":{"key":"edb8e60d1699e7d0d2e585ba93ed6989b652c835","name":"Save","description":"file, save","documentationLinks":[]},"176:5788":{"key":"855361f282b8997f75f6f26328f83c3eeef01e19","name":"Reply","description":"email, e-mail, envelope, message, reply, Workcloud, WC","documentationLinks":[]},"176:5795":{"key":"180f33ff8f0dcb0869f75101dd7e80cb36fb5739","name":"Redo","description":"redo, edit, Workcloud, WC","documentationLinks":[]},"176:5802":{"key":"55662773af7f6b841859247ab6599299fae78711","name":"Save Alt","description":"save, file, import, download, Workcloud, WC","documentationLinks":[]},"176:5809":{"key":"fcd14ef19ee15d947517edb0a13103ec0e575473","name":"Undo","description":"undo, edit, Workcloud, WC","documentationLinks":[]},"176:5816":{"key":"5c50319a70cef03422ea05db2574746f63de85a7","name":"Chart Pie","description":"report, analytics, chart, pie chart, pie-chart, piechart","documentationLinks":[]},"176:5822":{"key":"ff7d1cffd91c319c4a4cac169c4f4e291eb66314","name":"Email","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC","documentationLinks":[]},"176:5829":{"key":"2e842858b83493b6bff43874f51a467ccd2ae494","name":"Email Outline","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline","documentationLinks":[]},"176:5839":{"key":"f78e6558254b20c3a7d50c0a97e0e8b592358d55","name":"Scanner","description":"mobile","documentationLinks":[]},"176:5846":{"key":"5a9c331842ee93f6db77cf3730faf89f08ffa38a","name":"Printer","description":"print, printer, Workcloud, WC","documentationLinks":[]},"176:5853":{"key":"45364c041b3552011021e4aa4f94d4187382517d","name":"Cast","description":"Chrome","documentationLinks":[]},"176:5860":{"key":"c8d5aaa229a78646e816b04773c35117548d5a7e","name":"Cast Connected","description":"Chrome","documentationLinks":[]},"176:5867":{"key":"f364c6a6f68b48d6d03751bd316c8d62416273e5","name":"Desktop","description":"","documentationLinks":[]},"176:5874":{"key":"e1ae05ebc3b0eac945d2c64120de2dcdfb9c6185","name":"Devices Ecosystem","description":"","documentationLinks":[]},"176:5881":{"key":"7c7cfed104befae2ebdd932e4363cffe3733fdb9","name":"Device Settings","description":"","documentationLinks":[]},"176:5888":{"key":"1332d478aa097d9cb591848a1d2843ef2aed7421","name":"Headphones","description":"","documentationLinks":[]},"176:5895":{"key":"a7fd94e6b6f733e7eba00867ede1eadc8033acb9","name":"Keyboard","description":"keyboard, keypad, type, Workcloud, WC","documentationLinks":[]},"176:5902":{"key":"a7f3246b66215ea043b14e9530156c584cd65769","name":"Laptop","description":"Computer","documentationLinks":[]},"176:5909":{"key":"43688d3cefa72f2bc3237769d805bb1796044d93","name":"Memory","description":"Processor, Microprocessor","documentationLinks":[]},"176:5916":{"key":"a4c37dcc364c03c81b32b25191e6672ab1e2e6aa","name":"Monitor","description":"","documentationLinks":[]},"176:5923":{"key":"adc6052bc2b202f0437bcebd72a04926c80a8998","name":"Phone Android","description":"Mobile","documentationLinks":[]},"176:5930":{"key":"d33d761829524c20a1f6a6cc4e88a432dfe1f8cd","name":"Phone iPhone","description":"Mobile","documentationLinks":[]},"176:5937":{"key":"3266c82724c4f5cd69e1a861a6fa35e4b98841da","name":"Phonelink","description":"Connected","documentationLinks":[]},"176:5944":{"key":"03ba6ba94a31a4760796d8a35b229657969ed49d","name":"Security","description":"Protect, Protection, Shield","documentationLinks":[]},"176:5951":{"key":"4ffc9025404ffc8a3ef4c8e733f4d0fdbe3e4993","name":"Video Play","description":"","documentationLinks":[]},"176:5958":{"key":"8fee21bd48fef3f5536867ca0b483c5a52b445c3","name":"Smart Phone","description":"Mobile, phone, device, Workcloud, WC","documentationLinks":[]},"176:5965":{"key":"c3f5d07881ea9a4374491a1f1ec67cb7b104e558","name":"Speaker","description":"","documentationLinks":[]},"176:5972":{"key":"5b459d11e075ecf4bc663615c10f4a09e9cbaac0","name":"Tablet","description":"","documentationLinks":[]},"176:5979":{"key":"8dbef44fe722c85f87ed4aa2438446721a456065","name":"Tablet Mac","description":"iPad","documentationLinks":[]},"176:5986":{"key":"0c3278693479899a7c014cdff625a66b878bb920","name":"TV","description":"Television","documentationLinks":[]},"176:5993":{"key":"dd2fcb897604a454798081a77cb1a6693c6e5e60","name":"Watch","description":"Smartwatch","documentationLinks":[]},"176:6003":{"key":"026e47ecab4b5822d7a006cc0c34e2253425906f","name":"Finished Download","description":"Complete, Success, Done","documentationLinks":[]},"176:6010":{"key":"0975725ec5b32c1783247274f5197886d54fe2ab","name":"Downloading","description":"","documentationLinks":[]},"176:6017":{"key":"0c3d47e0b99b8a2d6a721011e5de86c98a3b3f13","name":"Cloud","description":"","documentationLinks":[]},"176:6024":{"key":"fa65f0dd571b1981d1ef36b1a0d92669928e856e","name":"Cloud Done","description":"Check, Check Mark, Mark","documentationLinks":[]},"176:6031":{"key":"bce46f0cde2d3029a213b4a083fe9424e3d5d652","name":"Cloud Download","description":"file, download, cloud, Workcloud, WC","documentationLinks":[]},"176:6038":{"key":"8cde2e1a8cdc8505bf98f68886e009b77d70dcab","name":"Cloud Outline","description":"","documentationLinks":[]},"176:6045":{"key":"1f9b23077a5cca2527be6b0e877b42b536318cef","name":"Cloud Upload","description":"file, upload, cloud, Workcloud, WC","documentationLinks":[]},"176:6052":{"key":"06e4af58fefc9796299155aa1d75bd36d75d72d0","name":"Cloud Off","description":"Offline","documentationLinks":[]},"176:6059":{"key":"41426d9912a342b838f7f3133c2e3a2eb49907a1","name":"Folder","description":"folder, Workcloud, WC","documentationLinks":[]},"176:6066":{"key":"0e855bdc2b0f8b1b76fd4f71195fa890b4f0abf8","name":"Create New Folder","description":"Add","documentationLinks":[]},"176:6073":{"key":"64511c4804a8a1ce6c515e2536961ce82ffdf562","name":"Folder Outline","description":"","documentationLinks":[]},"176:6080":{"key":"373f5fbab000865af43afc1eb53126927b9159ac","name":"Shared Folder","description":"Network, Access","documentationLinks":[]},"176:6087":{"key":"34353c2325dbbbc0d04e0776d55c57b96ba4f95e","name":"Grid View","description":"2x2","documentationLinks":[]},"176:6102":{"key":"898dce0f408dc79374d2796db8a66612408dfa2a","name":"Upload File","description":"","documentationLinks":[]},"176:6109":{"key":"b418ad93c74479f4abc83564943b693bfc108ade","name":"JPG Attach","description":"Type, File","documentationLinks":[]},"176:6119":{"key":"c1a90a0fc4209dd1ab8061fd92fef86a92f5be60","name":"PDF Attach","description":"Type, File","documentationLinks":[]},"176:6129":{"key":"c2cbc52a8984b918c5a105fc448f6cb8720653c3","name":"PNG Attach","description":"Type, File","documentationLinks":[]},"176:6139":{"key":"57338bc2a0b2839d80bc7c208a8e26055e98e479","name":"DOC Attach","description":"Type, File","documentationLinks":[]},"176:6149":{"key":"5ff5900c067b902dca74d5512cf2ec864ac16ca0","name":"PPT Attach","description":"Type, File","documentationLinks":[]},"176:6159":{"key":"d72a937dd7196d0162f7076aefced9f1536156e1","name":"Open New Off","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","documentationLinks":[]},"176:6164":{"key":"041a9e7f1ef241f385fff07aebfceaa97af1e93c","name":"Page Height","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6169":{"key":"ce53fdaf4694e4166c3a590e3144f5653d856624","name":"Page Width","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6174":{"key":"cf3a6a774cb9923b9976a4fea13f9fca8207652c","name":"Page Rotate","description":"Workcloud, WC, page rotate","documentationLinks":[]},"176:6179":{"key":"83ec664a107d1ac5360053807b6fc096ce84bff9","name":"Save","description":"Workcloud, WC, file, save","documentationLinks":[]},"176:6184":{"key":"51a6d9b8dcab30b3c3b1eb6e7605cda1dbc5205f","name":"Publish","description":"Workcloud, WC, file, publish","documentationLinks":[]},"176:6189":{"key":"e1e8cb0dd03cb7e59c4612d300e6dfdb4027f336","name":"File","description":"Workcloud, WC, file, note, paper","documentationLinks":[]},"176:6194":{"key":"9fc690ca5dc618d555d5ddda770e80ff005413dd","name":"Folder","description":"Workcloud, WC, project, folder, file","documentationLinks":[]},"176:6199":{"key":"fc7c807aecaf8e4ac414bda29cfec7a075ff6b33","name":"Maintenance","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","documentationLinks":[]},"1327:5":{"key":"fa74d772647bf4646618db5f5c3a1625d8070e14","name":"Life Guard","description":"Android","documentationLinks":[]},"1327:18":{"key":"7a9402271b9decfd5801a2639e9aca2cbfa252a1","name":"Mobility DNA","description":"","documentationLinks":[]},"1327:25":{"key":"cf1ae2a65281a6c0bccde0f117e0ad0839c86b2a","name":"TekSpeech Pro","description":"","documentationLinks":[]},"1327:32":{"key":"3459fffb48a486ea6a8c88acb530e9664538492a","name":"Enterprise Browser","description":"","documentationLinks":[]},"1327:39":{"key":"59fe9624af4661995fd21e528f5b4648b01146dc","name":"AppGallery","description":"Store","documentationLinks":[]},"1327:46":{"key":"27db2f0b9d39f7a51228101aa39556e8ba1ca7a7","name":"Workforce Connect","description":"WFC","documentationLinks":[]},"1327:53":{"key":"1171a60346cc1cc50a0e0bbd77e5fb1efbf66480","name":"SimulScan","description":"Signature","documentationLinks":[]},"1327:60":{"key":"81a24a04fa4a7f8c3ce4fb3f468e538a2a8c5af7","name":"Power Precision","description":"","documentationLinks":[]},"1327:67":{"key":"74d69f9036a58a631e3bf51ac020a1659331cdfe","name":"Power Precision +","description":"","documentationLinks":[]},"1327:74":{"key":"3fe69a0892bb641d3bb1c569b9c56f49f956c9ce","name":"Mobility Security","description":"","documentationLinks":[]},"1327:81":{"key":"24c0c7e84c3e5e0a9436b11f83869e8fb70bde2e","name":"StageNow","description":"","documentationLinks":[]},"1327:94":{"key":"ad3d6d802a7bc376fe7e4d2532750ce9fad2a888","name":"EMDK","description":"Toolbox","documentationLinks":[]},"1327:101":{"key":"fb744205c2bdf134b11377fac9e5fd0a0b07e543","name":"Enterprise Keyboard","description":"Setting","documentationLinks":[]},"1327:108":{"key":"90343edb43abc6c5142f6aee76bab35fd481d9a2","name":"MDM Toolkit","description":"","documentationLinks":[]},"1327:115":{"key":"02fa7e2ad504a72e11acec2aa2ad6341ab6c6330","name":"MX","description":"Mobility, Extensions","documentationLinks":[]},"1327:122":{"key":"a1ddca9e8af3f07d0af31d1b00b3ac4f021634ad","name":"RX","description":"Prescription","documentationLinks":[]},"1327:129":{"key":"a76a36e5bd7ba2d4a1668f08f35aab7d4436e160","name":"Setting Tool","description":"","documentationLinks":[]},"1327:136":{"key":"28d3f3d08802d32fb731e8034a5709857c1ba2c8","name":"Data Wedge","description":"","documentationLinks":[]},"1327:143":{"key":"dc8b8caef21c37879e6306a5458e3ca2963551c3","name":"Application Analytics","description":"","documentationLinks":[]},"1327:150":{"key":"1caf5d165efc3f7fb2ad7fa474ca4f24005e8a4c","name":"Swipe Assist","description":"","documentationLinks":[]},"1327:157":{"key":"064bd32633184eff705cd71f6edcc44f749fd972","name":"SmartDEX","description":"","documentationLinks":[]},"1327:164":{"key":"610e7daa0dbaa6eaa48f9dff0a89e0ae68567951","name":"Direct Connect","description":"","documentationLinks":[]},"1327:171":{"key":"6bd0ca2156087395a163934f50d09d50572bc25d","name":"Remote Control","description":"","documentationLinks":[]},"1327:178":{"key":"a8d43f8e262ada8ca60de953048f3bb08d6b7141","name":"Asset Tracker Lite","description":"","documentationLinks":[]},"1327:185":{"key":"c17737032ddbd06cec19ff34ada2f0a9ed63cf4d","name":"Voice Wedge","description":"","documentationLinks":[]},"1327:200":{"key":"11148f7c3482c0b2aa5d643389c04dfb337ae8ff","name":"Device Tracker","description":"","documentationLinks":[]},"1327:211":{"key":"fe317fda46a45fd752f3b525dcab6e80b47d9548","name":"WorryFree Wi-Fi","description":"","documentationLinks":[]},"1327:218":{"key":"737e6fa2fdfea23be063a19dcd0079cea879adbd","name":"Workstation Connect","description":"","documentationLinks":[]},"1327:241":{"key":"d6824832dd615e9a10cddcaf28b6a4c0dc6cbd60","name":"OEM Config","description":"","documentationLinks":[]},"1327:256":{"key":"1ac009970d754b3c737a53b6996879b083571ca2","name":"GMS Restricted Mode","description":"","documentationLinks":[]},"1327:271":{"key":"85842a1d05987316ec2a91199ab4ecd8c6746836","name":"Zero Touch","description":"","documentationLinks":[]},"1327:284":{"key":"d567c8b1b0cd0183c57e8afcf4b86158c5978005","name":"Smart TEK","description":"","documentationLinks":[]},"1327:317":{"key":"5b0018b335d85a73c564e03c3631c725d66d7f72","name":"OCR","description":"","documentationLinks":[]},"1327:338":{"key":"0939ae271428c3c19ecce31d8b158dda18d4e51b","name":"Smart TE","description":"","documentationLinks":[]},"1327:345":{"key":"73280896599d0125f3df190f7966d2561a0d0937","name":"Smart TE Lite","description":"","documentationLinks":[]},"1327:376":{"key":"c5dcb75e6cc0ccc1d2c5b3aca2ee81e532b4b970","name":"PRZM","description":"","documentationLinks":[]},"1327:403":{"key":"fdfc455f2955e2f4381ac792c59137289556cac2","name":"Multi Code Data Formatting","description":"","documentationLinks":[]},"1327:410":{"key":"9e09e39195a0b64458e2e91e61b15bd4c5a26278","name":"Remote Management","description":"","documentationLinks":[]},"1327:417":{"key":"3c7d3578a5900a50d9429a7c77a400c2d77a5d6f","name":"Preferred Symbol","description":"","documentationLinks":[]},"1327:424":{"key":"eb6f998106dc88eb8337031c815ab49f87db8f9e","name":"Wi-Fi Friendly Mode","description":"Bluetooth","documentationLinks":[]},"1327:443":{"key":"99f6e0c14701a750e74740a2827e03145d4ffce8","name":"Intelligent Document Capture","description":"","documentationLinks":[]},"1327:470":{"key":"b8f863f07cd1ba6ae16e0610022f3399f36daa52","name":"123Scan","description":"","documentationLinks":[]},"1327:529":{"key":"e8af8d378864c0da3586e579c4c7f3d5c0b6dcd6","name":"Scan To Connect","description":"","documentationLinks":[]},"1327:548":{"key":"b0e47b062dc3af80596f33682be6c7751e4c86aa","name":"Scanner Control Application","description":"","documentationLinks":[]},"1327:565":{"key":"d1f3555489cce24b0ebed9e7201eea601959e7fd","name":"Scan Speed Analytics","description":"","documentationLinks":[]},"1327:572":{"key":"ec8650e006f7dc37ff1e993ce27e93d7ad0023f4","name":"Remote Diagnostics","description":"","documentationLinks":[]},"1327:595":{"key":"7bcea349614d95637e66fddbcaf06b4e28d82a6c","name":"123 RFID","description":"","documentationLinks":[]},"1327:612":{"key":"fc84bd6800a2ce27e57a1c543db823a2373f7b2c","name":"Blood Bag Plus","description":"","documentationLinks":[]},"1327:619":{"key":"d361b920472b59a6c5aaccc635355bef6590fa59","name":"Label Plus","description":"","documentationLinks":[]},"1327:626":{"key":"9cc37a9080b52964bb289b494bf5aac21acc0263","name":"Virtual Tether","description":"","documentationLinks":[]},"1327:633":{"key":"57ec1170fb3193fc25828ea6c7e47277435eb973","name":"Link OS","description":"","documentationLinks":[]},"1327:640":{"key":"4223ad6dd6923de5e67b24653752704ce193fc67","name":"MDM Connectors","description":"","documentationLinks":[]},"1327:647":{"key":"898f55a1df23b3fcc4c14ddd528f330187f8e4d8","name":"Browser Print","description":"","documentationLinks":[]},"1327:660":{"key":"d1abf0f98ee9e45be644b4c06b4e136510835fd9","name":"Cloud Connect","description":"","documentationLinks":[]},"1327:667":{"key":"c060801462bcd862d679571dd5f92e2522f92b6e","name":"Virtual Devices","description":"","documentationLinks":[]},"1327:678":{"key":"9861ffb6d1475b8ff328535ef5a0930073101c66","name":"Enterprise Connectors","description":"","documentationLinks":[]},"1327:685":{"key":"ede69463bd0f227ce2017e9ce7b9437f239b09af","name":"Pairing Solutions","description":"","documentationLinks":[]},"1327:704":{"key":"7a8278746ace27d38a01520a4c99b85dc3f3f1a3","name":"Scan And Pair","description":"","documentationLinks":[]},"1327:729":{"key":"cb269e1ea9c076ae3250e6f73d0853a623046e0b","name":"Zebra Designer","description":"","documentationLinks":[]},"1327:758":{"key":"4eab2fd93528b3de22f4df8b0138a3cfb9a1febe","name":"PDF Direct","description":"Print","documentationLinks":[]},"1327:765":{"key":"a211c9d29afa6fa7a7e5cf0fa31b6efd81009513","name":"Print Station","description":"","documentationLinks":[]},"1327:780":{"key":"f45c8eba47d910cd95254fedda7736162f62ac56","name":"Printer Profile Manager","description":"","documentationLinks":[]},"1327:795":{"key":"6753cb421dd07c37c426c963ac7871720e3b59d5","name":"Zebra Setup Utility","description":"","documentationLinks":[]},"1327:818":{"key":"a137efbd957879ecc966c1dc0a8697dd0a4e6f33","name":"Bluetooth Management","description":"","documentationLinks":[]},"1327:825":{"key":"a555f9fb40298e035c402ccae06df3aa14c57433","name":"Zebra OneCare","description":"","documentationLinks":[]},"1327:832":{"key":"9d26c7dbda99cae2466479d2d917dc2f6db1f338","name":"Visibility Services","description":"","documentationLinks":[]},"1327:843":{"key":"992562e87360944835a797ca34c253cc7a203c59","name":"Print Secure","description":"","documentationLinks":[]},"1327:858":{"key":"bce454710c9baf25cac336be25a63caed030a5cf","name":"Design Tools","description":"","documentationLinks":[]}},"schemaVersion":0,"styles":{"1:2":{"key":"e4fa20f35d2c34a96a908621be4749c83c9aafcb","name":"Light Mode/Text/Default","styleType":"FILL","remote":true,"description":"Use:\nPrimary text for content, Enabled text"},"1:3":{"key":"8d192dd816c3d2df612048194a289aef1b69fa8d","name":"Standard/Large Display/Heading 5","styleType":"TEXT","remote":true,"description":""},"1:4":{"key":"bbb824378ad20239be10695b3664fabc0c149627","name":"Light Mode/Border/Default","styleType":"FILL","remote":true,"description":""},"1:5":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""},"176:625":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""}},"name":"IconsTestPage","lastModified":"2024-05-08T12:25:23Z","thumbnailUrl":"https://s3-alpha.figma.com/thumbnails/f1891b26-cbbc-4a9a-a7b1-2fd74ab7609a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWCVDFANMME%2F20240801%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240801T000000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=7e5b767ef7c6f7c6077bfc95a603c4edb01d3f875fb63ba546ee576660aa7426","version":"6025593135","role":"owner","editorType":"figma","linkAccess":"inherit"} \ No newline at end of file diff --git a/test/data/iconNodes.json b/test/data/iconNodes.json index 93adff4c..dae4b283 100644 --- a/test/data/iconNodes.json +++ b/test/data/iconNodes.json @@ -1 +1 @@ -[{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}] \ No newline at end of file +[{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}] \ No newline at end of file diff --git a/test/data/iconsPage.json b/test/data/iconsPage.json index d93ac714..20b13c28 100644 --- a/test/data/iconsPage.json +++ b/test/data/iconsPage.json @@ -1 +1 @@ -{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"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},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"},"exportSettings":[]} \ No newline at end of file +{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"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":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"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":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"}} \ No newline at end of file diff --git a/test/data/singleCategoryNode.json b/test/data/singleCategoryNode.json index 3fef9f73..516d4670 100644 --- a/test/data/singleCategoryNode.json +++ b/test/data/singleCategoryNode.json @@ -1 +1 @@ -{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]} \ No newline at end of file +{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"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":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]} \ No newline at end of file diff --git a/test/integration/fetchIcons.test.ts b/test/integration/fetchIcons.test.ts index 10deab20..75313101 100644 --- a/test/integration/fetchIcons.test.ts +++ b/test/integration/fetchIcons.test.ts @@ -1,8 +1,8 @@ import { assert } from "chai"; import { ZDS_ASSETS_FILE_ID, ZDS_ASSETS_ICON_PAGE_NAME } from "../../figmaConfig.js"; -import fetchIcons, { definitionsDir, fontDir } from "../../scripts/fetchIcons.js"; +import fetchIcons from "../../scripts/fetchIcons.js"; import { checkFigmaTokenIsSet } from "../../scripts/utils/figmaUtils.js"; -import { zdsIntegrationOutputDir } from "../data/constants.js"; +import { testDartOutputDir, testTSOutputDir, zdsIntegrationOutputDir } from "../data/constants.js"; import { existsSync, readFileSync, rmSync } from "fs"; import { IconManifest } from "../../scripts/types/customTypes.js"; import { checkFontsExist, checkIconsExist } from "../utils.js"; @@ -41,11 +41,15 @@ describe("fetchIcons", () => { }); it("should create fonts", () => { - checkFontsExist("zeta-icons", `${zdsIntegrationOutputDir}/${fontDir}`); + checkFontsExist( + "zeta-icons", + `${zdsIntegrationOutputDir}/${testDartOutputDir}`, + `${zdsIntegrationOutputDir}/${testTSOutputDir}` + ); }); it("should write definition files", () => { - assert.equal(existsSync(`${zdsIntegrationOutputDir}/${definitionsDir}/icons.dart`), true); - assert.equal(existsSync(`${zdsIntegrationOutputDir}/${definitionsDir}/icon-types.ts`), true); + assert.equal(existsSync(`${zdsIntegrationOutputDir}/${testDartOutputDir}/icons.g.dart`), true); + assert.equal(existsSync(`${zdsIntegrationOutputDir}/${testTSOutputDir}/icon-types.ts`), true); }); }); diff --git a/test/integration/generateDefinitionFiles.test.ts b/test/integration/generateDefinitionFiles.test.ts index 535c87a4..c73ead72 100644 --- a/test/integration/generateDefinitionFiles.test.ts +++ b/test/integration/generateDefinitionFiles.test.ts @@ -2,16 +2,16 @@ import { assert } from "chai"; import { existsSync } from "fs"; import { generateDefinitionFiles } from "../../scripts/generators/generateDefinitionFiles.js"; import { generatedFontDefinitions, manifest } from "../data/index.js"; -import { testDefinitionsOutputDir, testOutputDir } from "../data/constants.js"; +import { testDartOutputDir, testOutputDir, testTSOutputDir } from "../data/constants.js"; describe("generateDefinitionFiles", () => { before(async () => { - generateDefinitionFiles(testOutputDir, testDefinitionsOutputDir, generatedFontDefinitions, manifest); + generateDefinitionFiles(testOutputDir, generatedFontDefinitions, manifest); }); it("should write definition files", () => { - assert.equal(existsSync(`${testDefinitionsOutputDir}/icons.dart`), true); - assert.equal(existsSync(`${testDefinitionsOutputDir}/icon-types.ts`), true); + assert.equal(existsSync(`${testDartOutputDir}/icons.g.dart`), true); + assert.equal(existsSync(`${testTSOutputDir}/icon-types.ts`), true); }); it("should write the icon manifest", () => { diff --git a/test/integration/generateFontFiles.test.ts b/test/integration/generateFontFiles.test.ts index 216dee3a..b3d2b0ab 100644 --- a/test/integration/generateFontFiles.test.ts +++ b/test/integration/generateFontFiles.test.ts @@ -1,7 +1,13 @@ import "./saveSvgs.test.js"; // Ensures saveSVGs is called before running these tests. import { optimizeSVGs } from "../../scripts/utils/optimizeSvgs.js"; -import { testFontName, testFontsOutputDir, testIconsOutputDir, testTempOutputDir } from "../data/constants.js"; +import { + testDartOutputDir, + testFontName, + testIconsOutputDir, + testTempOutputDir, + testTSOutputDir, +} from "../data/constants.js"; import { categoryNames, generatedFontDefinitions } from "../data/index.js"; import { GenerateFontResult } from "../../scripts/types/customTypes.js"; import { generateFonts } from "../../scripts/generators/generateFonts.js"; @@ -13,7 +19,7 @@ describe("generateFontFiles", () => { before(async () => { await optimizeSVGs(testIconsOutputDir, testTempOutputDir, categoryNames); - result = await generateFonts(testTempOutputDir, testFontsOutputDir, testFontName); + result = await generateFonts(testTempOutputDir, testFontName, testDartOutputDir, testTSOutputDir); }); it("should return a correct font generation result", () => { @@ -21,6 +27,6 @@ describe("generateFontFiles", () => { }); it("should have created sharp and rounded ttf and woff2 files", () => { - checkFontsExist(testFontName, testFontsOutputDir); + checkFontsExist(testFontName, testDartOutputDir, testTSOutputDir); }); }); diff --git a/test/regenerateTestFiles.ts b/test/regenerateTestFiles.ts index 9efe16e9..a64e5322 100644 --- a/test/regenerateTestFiles.ts +++ b/test/regenerateTestFiles.ts @@ -2,11 +2,12 @@ import { rmSync, rmdirSync, writeFileSync } from "fs"; import * as dotenv from "dotenv"; import { getFigmaDocument, getImageFiles } from "../scripts/utils/api.js"; import { + testDartOutputDir, testFileId, - testFontsOutputDir, testIconPageName, testIconsOutputDir, testOutputDir, + testTSOutputDir, } from "./data/constants.js"; import { extractCategoryNames, @@ -61,7 +62,7 @@ async function main() { await optimizeSVGs(testIconsOutputDir, tempOutputDir, categoryNames); console.log("✅ - Optimized SVGs"); - const generateFontResult = await generateFonts(tempOutputDir, testFontsOutputDir, "zeta-icons"); + const generateFontResult = await generateFonts(tempOutputDir, "zeta-icons", testDartOutputDir, testTSOutputDir); writeFile(generateFontResult, "generatedFontResponse.json"); rmSync(testOutputDir, { recursive: true }); diff --git a/test/utils.ts b/test/utils.ts index 40732d4a..1883d834 100644 --- a/test/utils.ts +++ b/test/utils.ts @@ -9,11 +9,11 @@ export function checkIconsExist(manifest: IconManifest) { }); } -export function checkFontsExist(fontName: string, dir: string) { - assert.equal(fontExists("ttf", "round", fontName, dir), true); - assert.equal(fontExists("ttf", "sharp", fontName, dir), true); - assert.equal(fontExists("woff2", "round", fontName, dir), true); - assert.equal(fontExists("woff2", "sharp", fontName, dir), true); +export function checkFontsExist(fontName: string, dartDir: string, tsDir: string) { + assert.equal(fontExists("ttf", "round", fontName, dartDir), true); + assert.equal(fontExists("ttf", "sharp", fontName, dartDir), true); + assert.equal(fontExists("woff2", "round", fontName, tsDir), true); + assert.equal(fontExists("woff2", "sharp", fontName, tsDir), true); } function fontExists(format: string, type: FontType, fontName: string, dir: string): boolean { diff --git a/testFile.txt b/testFile.txt deleted file mode 100644 index e69de29b..00000000