chrome-devtools-frontend 1.0.1512147 → 1.0.1513662
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/cookbook/release_management.md +15 -13
- package/docs/get_the_code.md +114 -35
- package/front_end/Images/src/ai-explorer-badge.svg +114 -0
- package/front_end/Images/src/code-whisperer-badge.svg +166 -0
- package/front_end/Images/src/devtools-user-badge.svg +129 -0
- package/front_end/Images/src/dom-detective-badge.svg +136 -0
- package/front_end/Images/src/speedster-badge.svg +166 -0
- package/front_end/core/common/Color.ts +40 -44
- package/front_end/core/common/Console.ts +4 -4
- package/front_end/core/common/ParsedURL.ts +14 -14
- package/front_end/core/common/ResourceType.ts +20 -20
- package/front_end/core/common/SegmentedRange.ts +13 -14
- package/front_end/core/common/Settings.ts +4 -4
- package/front_end/core/common/StringOutputStream.ts +4 -4
- package/front_end/core/host/GdpClient.ts +76 -2
- package/front_end/core/host/InspectorFrontendHost.ts +4 -1
- package/front_end/core/host/InspectorFrontendHostAPI.ts +2 -0
- package/front_end/core/host/ResourceLoader.ts +2 -2
- package/front_end/core/host/UserMetrics.ts +0 -2
- package/front_end/core/i18n/NumberFormatter.ts +7 -0
- package/front_end/core/protocol_client/InspectorBackend.ts +9 -9
- package/front_end/core/root/Runtime.ts +5 -2
- package/front_end/core/sdk/AccessibilityModel.ts +48 -48
- package/front_end/core/sdk/AnimationModel.ts +78 -79
- package/front_end/core/sdk/CPUProfilerModel.ts +5 -5
- package/front_end/core/sdk/CPUThrottlingManager.ts +17 -17
- package/front_end/core/sdk/CSSMatchedStyles.ts +44 -44
- package/front_end/core/sdk/CSSMedia.ts +22 -22
- package/front_end/core/sdk/CSSModel.ts +4 -4
- package/front_end/core/sdk/CSSProperty.ts +9 -9
- package/front_end/core/sdk/CSSPropertyParser.ts +1 -2
- package/front_end/core/sdk/CSSRule.ts +3 -3
- package/front_end/core/sdk/CSSStyleDeclaration.ts +27 -28
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +13 -13
- package/front_end/core/sdk/CategorizedBreakpoint.ts +4 -4
- package/front_end/core/sdk/ChildTargetManager.ts +6 -6
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +4 -4
- package/front_end/core/sdk/ConsoleModel.ts +24 -24
- package/front_end/core/sdk/Cookie.ts +16 -16
- package/front_end/core/sdk/CookieParser.ts +6 -6
- package/front_end/core/sdk/DOMDebuggerModel.ts +88 -89
- package/front_end/core/sdk/DOMModel.ts +113 -113
- package/front_end/core/sdk/DebuggerModel.ts +102 -103
- package/front_end/core/sdk/EmulationModel.ts +6 -6
- package/front_end/core/sdk/EventBreakpointsModel.ts +5 -5
- package/front_end/core/sdk/HeapProfilerModel.ts +5 -5
- package/front_end/core/sdk/IsolateManager.ts +26 -26
- package/front_end/core/sdk/LayerTreeBase.ts +29 -30
- package/front_end/core/sdk/OverlayModel.ts +6 -6
- package/front_end/core/sdk/Resource.ts +43 -43
- package/front_end/core/sdk/ResourceTreeModel.ts +58 -61
- package/front_end/core/sdk/RuntimeModel.ts +12 -13
- package/front_end/core/sdk/SDKModel.ts +3 -3
- package/front_end/core/sdk/Script.ts +17 -17
- package/front_end/core/sdk/SecurityOriginManager.ts +14 -14
- package/front_end/core/sdk/ServerTiming.ts +2 -2
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +15 -15
- package/front_end/core/sdk/ServiceWorkerManager.ts +19 -24
- package/front_end/core/sdk/SourceMap.ts +10 -10
- package/front_end/core/sdk/StorageKeyManager.ts +12 -12
- package/front_end/core/sdk/Target.ts +33 -34
- package/front_end/core/sdk/TargetManager.ts +20 -20
- package/front_end/entrypoints/formatter_worker/AcornTokenizer.ts +8 -8
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +7 -7
- package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +7 -7
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +24 -24
- package/front_end/entrypoints/main/GlobalAiButton.ts +3 -3
- package/front_end/entrypoints/main/MainImpl.ts +16 -14
- package/front_end/entrypoints/main/main-meta.ts +1 -2
- package/front_end/generated/InspectorBackendCommands.js +3 -2
- package/front_end/generated/SupportedCSSProperties.js +20 -0
- package/front_end/generated/protocol-mapping.d.ts +4 -0
- package/front_end/generated/protocol-proxy-api.d.ts +5 -0
- package/front_end/generated/protocol.ts +20 -0
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +18 -35
- package/front_end/models/ai_assistance/ai_assistance.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +7 -6
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +246 -119
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +187 -73
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +106 -100
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +20 -27
- package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +151 -0
- package/front_end/models/badges/AiExplorerBadge.ts +21 -0
- package/front_end/models/badges/Badge.ts +10 -9
- package/front_end/models/badges/CodeWhispererBadge.ts +21 -0
- package/front_end/models/badges/DOMDetectiveBadge.ts +21 -0
- package/front_end/models/badges/SpeedsterBadge.ts +7 -2
- package/front_end/models/badges/StarterBadge.ts +6 -1
- package/front_end/models/badges/UserBadges.ts +61 -9
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +6 -6
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +18 -18
- package/front_end/models/bindings/FileUtils.ts +15 -15
- package/front_end/models/bindings/ResourceScriptMapping.ts +14 -14
- package/front_end/models/elements/ElementUpdateRecord.ts +11 -11
- package/front_end/models/emulation/DeviceModeModel.ts +123 -131
- package/front_end/models/emulation/EmulatedDevices.ts +22 -22
- package/front_end/models/extensions/ExtensionPanel.ts +24 -24
- package/front_end/models/extensions/ExtensionServer.ts +4 -4
- package/front_end/models/javascript_metadata/NativeFunctions.js +14 -2
- package/front_end/models/persistence/IsolatedFileSystem.ts +18 -19
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +13 -13
- package/front_end/models/trace/EventsSerializer.ts +5 -5
- package/front_end/models/trace/LanternComputationData.ts +10 -10
- package/front_end/models/trace/ModelImpl.ts +32 -54
- package/front_end/models/trace/Processor.ts +28 -30
- package/front_end/models/trace/extras/FilmStrip.ts +6 -6
- package/front_end/models/trace/extras/StackTraceForEvent.ts +22 -25
- package/front_end/models/trace/extras/ThirdParties.ts +16 -17
- package/front_end/models/trace/extras/TraceFilter.ts +1 -1
- package/front_end/models/trace/handlers/Threads.ts +10 -10
- package/front_end/models/trace/handlers/helpers.ts +9 -9
- package/front_end/models/trace/handlers/types.ts +3 -3
- package/front_end/models/trace/insights/CLSCulprits.ts +12 -14
- package/front_end/models/trace/insights/Cache.ts +8 -4
- package/front_end/models/trace/insights/DOMSize.ts +8 -5
- package/front_end/models/trace/insights/DocumentLatency.ts +2 -2
- package/front_end/models/trace/insights/DuplicatedJavaScript.ts +3 -3
- package/front_end/models/trace/insights/FontDisplay.ts +3 -4
- package/front_end/models/trace/insights/ForcedReflow.ts +3 -3
- package/front_end/models/trace/insights/INPBreakdown.ts +2 -2
- package/front_end/models/trace/insights/ImageDelivery.ts +11 -11
- package/front_end/models/trace/insights/LCPBreakdown.ts +4 -4
- package/front_end/models/trace/insights/LCPDiscovery.ts +4 -4
- package/front_end/models/trace/insights/LegacyJavaScript.ts +2 -2
- package/front_end/models/trace/insights/ModernHTTP.ts +4 -5
- package/front_end/models/trace/insights/NetworkDependencyTree.ts +12 -12
- package/front_end/models/trace/insights/RenderBlocking.ts +9 -10
- package/front_end/models/trace/insights/SlowCSSSelector.ts +2 -2
- package/front_end/models/trace/insights/ThirdParties.ts +4 -5
- package/front_end/models/trace/insights/Viewport.ts +8 -5
- package/front_end/models/trace/insights/types.ts +1 -0
- package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +10 -10
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +52 -52
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +8 -8
- package/front_end/panels/animation/AnimationTimeline.ts +5 -5
- package/front_end/panels/animation/AnimationUI.ts +22 -23
- package/front_end/panels/application/ApplicationPanelSidebar.ts +12 -12
- package/front_end/panels/application/DOMStorageModel.ts +23 -23
- package/front_end/panels/application/ExtensionStorageModel.ts +31 -31
- package/front_end/panels/application/IndexedDBModel.ts +1 -0
- package/front_end/panels/application/PreloadingTreeElement.ts +8 -8
- package/front_end/panels/application/ServiceWorkersView.ts +0 -53
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +2 -2
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +2 -2
- package/front_end/panels/common/BadgeNotification.ts +140 -10
- package/front_end/panels/common/GdpSignUpDialog.ts +5 -0
- package/front_end/panels/common/badgeNotification.css +30 -9
- package/front_end/panels/console/ConsoleContextSelector.ts +9 -9
- package/front_end/panels/console/ConsolePrompt.ts +8 -5
- package/front_end/panels/console/ConsoleView.ts +13 -13
- package/front_end/panels/console/ConsoleViewport.ts +29 -29
- package/front_end/panels/coverage/CoverageModel.ts +22 -22
- package/front_end/panels/elements/ClassesPaneWidget.ts +1 -1
- package/front_end/panels/elements/ComputedStyleModel.ts +17 -18
- package/front_end/panels/elements/DOMPath.ts +2 -2
- package/front_end/panels/elements/ElementsPanel.ts +13 -13
- package/front_end/panels/elements/ElementsTreeElement.ts +30 -18
- package/front_end/panels/elements/ElementsTreeOutline.ts +44 -48
- package/front_end/panels/elements/ShortcutTreeElement.ts +4 -4
- package/front_end/panels/elements/StylePropertiesSection.ts +7 -4
- package/front_end/panels/elements/StylePropertyTreeElement.ts +54 -50
- package/front_end/panels/elements/StylesSidebarPane.ts +19 -19
- package/front_end/panels/emulation/DeviceModeToolbar.ts +7 -7
- package/front_end/panels/emulation/DeviceModeView.ts +6 -6
- package/front_end/panels/emulation/MediaQueryInspector.ts +18 -18
- package/front_end/panels/event_listeners/EventListenersView.ts +13 -14
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -3
- package/front_end/panels/layer_viewer/LayerViewHost.ts +13 -13
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +9 -10
- package/front_end/panels/layer_viewer/TransformController.ts +34 -36
- package/front_end/panels/layers/LayerTreeModel.ts +41 -40
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +13 -13
- package/front_end/panels/lighthouse/LighthouseStartView.ts +7 -7
- package/front_end/panels/media/PlayerMessagesView.ts +5 -5
- package/front_end/panels/media/TickingFlameChart.ts +24 -24
- package/front_end/panels/media/TickingFlameChartHelpers.ts +32 -32
- package/front_end/panels/network/NetworkItemView.ts +4 -4
- package/front_end/panels/network/NetworkLogViewColumns.ts +29 -29
- package/front_end/panels/network/NetworkPanel.ts +8 -5
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +10 -10
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +3 -3
- package/front_end/panels/profiler/HeapProfileView.ts +1 -1
- package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +3 -4
- package/front_end/panels/profiler/ProfileHeader.ts +25 -25
- package/front_end/panels/profiler/ProfileLauncherView.ts +5 -6
- package/front_end/panels/recorder/components/ReplaySection.ts +3 -1
- package/front_end/panels/security/OriginTreeElement.ts +8 -8
- package/front_end/panels/security/SecurityPanel.ts +5 -5
- package/front_end/panels/settings/SettingsScreen.ts +18 -18
- package/front_end/panels/settings/components/SyncSection.ts +26 -8
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +3 -0
- package/front_end/panels/sources/DebuggerPausedMessage.ts +8 -9
- package/front_end/panels/sources/NavigatorView.ts +43 -46
- package/front_end/panels/sources/SourcesPanel.ts +35 -35
- package/front_end/panels/sources/SourcesView.ts +13 -13
- package/front_end/panels/sources/TabbedEditorContainer.ts +19 -22
- package/front_end/panels/sources/UISourceCodeFrame.ts +4 -4
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +34 -36
- package/front_end/panels/timeline/AnimationsTrackAppender.ts +3 -3
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +8 -8
- package/front_end/panels/timeline/CountersGraph.ts +16 -16
- package/front_end/panels/timeline/EntriesFilter.ts +4 -3
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +3 -3
- package/front_end/panels/timeline/GPUTrackAppender.ts +3 -3
- package/front_end/panels/timeline/Initiators.ts +10 -10
- package/front_end/panels/timeline/InteractionsTrackAppender.ts +5 -5
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +7 -7
- package/front_end/panels/timeline/ModificationsManager.ts +8 -15
- package/front_end/panels/timeline/TargetForEvent.ts +2 -2
- package/front_end/panels/timeline/ThirdPartyTreeView.ts +1 -1
- package/front_end/panels/timeline/ThreadAppender.ts +13 -13
- package/front_end/panels/timeline/TimelineDetailsView.ts +6 -14
- package/front_end/panels/timeline/TimelineEventOverview.ts +27 -26
- package/front_end/panels/timeline/TimelineFilters.ts +5 -5
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +54 -53
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +34 -34
- package/front_end/panels/timeline/TimelineFlameChartView.ts +18 -31
- package/front_end/panels/timeline/TimelineHistoryManager.ts +17 -18
- package/front_end/panels/timeline/TimelineMiniMap.ts +6 -6
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +6 -6
- package/front_end/panels/timeline/TimelinePanel.ts +73 -68
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +7 -5
- package/front_end/panels/timeline/TimelineTreeView.ts +10 -10
- package/front_end/panels/timeline/TimelineUIUtils.ts +47 -46
- package/front_end/panels/timeline/TimingsTrackAppender.ts +12 -12
- package/front_end/panels/timeline/TracingLayerTree.ts +43 -43
- package/front_end/panels/timeline/TrackConfigBanner.ts +6 -6
- package/front_end/panels/timeline/TrackConfiguration.ts +1 -1
- package/front_end/panels/timeline/components/DetailsView.ts +4 -4
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +12 -21
- package/front_end/panels/timeline/components/LiveMetricsView.ts +2 -1
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +5 -5
- package/front_end/panels/timeline/components/Sidebar.ts +4 -14
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +13 -36
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +21 -19
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +1 -1
- package/front_end/panels/timeline/components/insights/Cache.ts +4 -0
- package/front_end/panels/timeline/components/insights/DOMSize.ts +5 -1
- package/front_end/panels/timeline/components/insights/Helpers.ts +19 -0
- package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +1 -1
- package/front_end/panels/timeline/components/insights/Viewport.ts +4 -0
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +1 -1
- package/front_end/panels/timeline/utils/AICallTree.ts +11 -11
- package/front_end/panels/timeline/utils/AIContext.ts +17 -19
- package/front_end/panels/timeline/utils/EntityMapper.ts +6 -5
- package/front_end/panels/timeline/utils/EntryName.ts +2 -2
- package/front_end/panels/timeline/utils/EntryNodes.ts +5 -5
- package/front_end/panels/timeline/utils/EntryStyles.ts +4 -4
- package/front_end/panels/timeline/utils/FreshRecording.ts +3 -3
- package/front_end/panels/timeline/utils/Helpers.ts +0 -18
- package/front_end/panels/timeline/utils/InsightAIContext.ts +6 -6
- package/front_end/panels/timeline/utils/SourceMapsResolver.ts +7 -7
- package/front_end/panels/webauthn/WebauthnPane.ts +1 -0
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
- package/front_end/third_party/codemirror.next/package.json +1 -1
- package/front_end/third_party/codemirror.next/rebuild.sh +1 -1
- package/front_end/third_party/json5/rebuild.sh +1 -1
- package/front_end/third_party/legacy-javascript/{update.sh → rebuild.sh} +1 -1
- package/front_end/third_party/lit/lib/decorators.d.ts +26 -9
- package/front_end/third_party/lit/lib/decorators.js +5 -5
- package/front_end/third_party/lit/lib/decorators.js.map +1 -1
- package/front_end/third_party/lit/lib/directive.js.map +1 -1
- package/front_end/third_party/lit/lib/directives.js +8 -13
- package/front_end/third_party/lit/lib/directives.js.map +1 -1
- package/front_end/third_party/lit/lib/lit.d.ts +26 -9
- package/front_end/third_party/lit/lib/lit.js +5 -5
- package/front_end/third_party/lit/lib/lit.js.map +1 -1
- package/front_end/third_party/lit/lib/static-html.js +2 -2
- package/front_end/third_party/lit/lib/static-html.js.map +1 -1
- package/front_end/third_party/lit/rebuild.sh +1 -1
- package/front_end/third_party/third-party-web/rebuild.sh +1 -1
- package/front_end/ui/components/dialogs/Dialog.ts +6 -7
- package/front_end/ui/legacy/ActionRegistration.ts +9 -9
- package/front_end/ui/legacy/DockController.ts +18 -18
- package/front_end/ui/legacy/FilterBar.ts +7 -7
- package/front_end/ui/legacy/Fragment.ts +4 -4
- package/front_end/ui/legacy/GlassPane.ts +12 -12
- package/front_end/ui/legacy/InspectorView.ts +5 -15
- package/front_end/ui/legacy/ListControl.ts +27 -27
- package/front_end/ui/legacy/ListWidget.ts +4 -4
- package/front_end/ui/legacy/PopoverHelper.ts +4 -4
- package/front_end/ui/legacy/ShortcutRegistry.ts +17 -17
- package/front_end/ui/legacy/TabbedPane.ts +74 -75
- package/front_end/ui/legacy/TextPrompt.ts +31 -31
- package/front_end/ui/legacy/Toolbar.ts +13 -14
- package/front_end/ui/legacy/ViewManager.ts +30 -31
- package/front_end/ui/legacy/Widget.ts +6 -6
- package/front_end/ui/legacy/XLink.ts +9 -9
- package/front_end/ui/legacy/ZoomManager.ts +9 -9
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +27 -27
- package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +30 -32
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +15 -15
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +64 -64
- package/front_end/ui/legacy/components/data_grid/ShowMoreDataGridNode.ts +2 -2
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +10 -11
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +12 -12
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -3
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +14 -14
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +8 -8
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +5 -5
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +4 -4
- package/front_end/ui/legacy/filter.css +1 -1
- package/front_end/ui/legacy/inspectorCommon.css +1 -1
- package/front_end/ui/legacy/softDropDownButton.css +1 -1
- package/front_end/ui/legacy/theme_support/ThemeSupport.ts +4 -4
- package/front_end/ui/visual_logging/KnownContextValues.ts +2 -2
- package/package.json +1 -1
- package/front_end/models/ai_assistance/data_formatters/Types.ts +0 -9
@@ -17,21 +17,23 @@ their commit hash, which should suffice for the projected future.
|
|
17
17
|
For each Chromium release branch, we create a mirror branch with the same name
|
18
18
|
on our repo. Rough outline:
|
19
19
|
|
20
|
-
1. Chromium cuts a branch e.g. 3879
|
21
|
-
1. Bots create
|
20
|
+
1. Chromium cuts a branch e.g. `3879`
|
21
|
+
1. Bots create the `chromium/3879` branch on the `devtools-frontend` repo
|
22
22
|
1. The end
|
23
23
|
|
24
24
|
## Handling of Beta/Stable branches
|
25
25
|
|
26
|
-
Generally speaking,
|
27
|
-
is a special waterfall
|
26
|
+
Generally speaking, Beta/Stable branches are the same as Canary branches.
|
27
|
+
However, there is a special waterfall that runs tests on the
|
28
|
+
[Beta](https://ci.chromium.org/p/devtools-frontend/g/beta/console) and
|
29
|
+
[Stable](https://ci.chromium.org/p/devtools-frontend/g/stable/console) branches.
|
28
30
|
|
29
|
-
|
30
|
-
in
|
31
|
-
[infra/config](https://chromium.googlesource.com/devtools/devtools-frontend/+/refs/heads/infra/config)
|
32
|
-
branch of devtools-frontend
|
33
|
-
existing beta branch to stable section and modify beta section
|
34
|
-
corresponding branch number for the new Chromium milestone.
|
31
|
+
To make this possible, whenever Chromium updates to a new major version, we
|
32
|
+
update the branch number in the
|
33
|
+
[`infra/config`](https://chromium.googlesource.com/devtools/devtools-frontend/+/refs/heads/infra/config)
|
34
|
+
branch of `devtools-frontend`. Specifically, in `buckets/ci.start`, promote the
|
35
|
+
existing `beta` branch to the `stable` section and modify the `beta` section
|
36
|
+
with the corresponding branch number for the new Chromium milestone.
|
35
37
|
|
36
38
|
```python
|
37
39
|
generate_ci_configs(
|
@@ -48,13 +50,13 @@ generate_ci_configs(
|
|
48
50
|
...
|
49
51
|
```
|
50
52
|
|
51
|
-
After editing the above mentioned file run `lucicfg generate main.star` to have
|
52
|
-
the change propagated to the cfg files. Example:
|
53
|
+
After editing the above mentioned file, run `lucicfg generate main.star` to have
|
54
|
+
the change propagated to the `*.cfg` files. Example:
|
53
55
|
[CL](https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2104476)
|
54
56
|
|
55
57
|
## Rolling/Integrating into Chromium
|
56
58
|
|
57
59
|
The
|
58
60
|
[Skia autoroller](https://skia.googlesource.com/buildbot/+/main/autoroll/README.md)
|
59
|
-
is used. The
|
61
|
+
is used. The `devtools-frontend` auto-roller state can be seen and controlled
|
60
62
|
[here](https://autoroll.skia.org/r/devtools-frontend-chromium?tab=status).
|
package/docs/get_the_code.md
CHANGED
@@ -291,16 +291,125 @@ you could run the hosted DevTools with the following command:
|
|
291
291
|
$ google-chrome http://localhost:8000/inspector.html?ws=localhost:9222/devtools/page/BADADD4E55BADADD4E55BADADD4E5511
|
292
292
|
```
|
293
293
|
|
294
|
+
## Chromium checkout
|
295
|
+
|
296
|
+
You can also work on the DevTools front-end within a full Chromium checkout.
|
297
|
+
This workflow is particularly useful if you are working on a feature or a bug
|
298
|
+
that spans back-end (Chromium C++ code) and front-end (DevTools TypeScript
|
299
|
+
code), but it's also useful for Chromies that need to make small patches to
|
300
|
+
DevTools front-end and don't want to go through the process of setting up a
|
301
|
+
dedicated [`devtools-frontend` standalone checkout](#standalone-checkout).
|
302
|
+
|
303
|
+
### Checking out source
|
304
|
+
|
305
|
+
Follow [instructions](https://www.chromium.org/developers/how-tos/get-the-code)
|
306
|
+
to check out Chromium. The DevTools front-end code is located inside the
|
307
|
+
`third_party/devtools-frontend/src/` folder (after running `gclient sync`).
|
308
|
+
|
309
|
+
### Build
|
310
|
+
|
311
|
+
The [instructions](https://www.chromium.org/developers/how-tos/get-the-code) on
|
312
|
+
the Chromium page apply as well here. In particular use
|
313
|
+
|
314
|
+
```bash
|
315
|
+
autoninja -C out/Default chrome
|
316
|
+
```
|
317
|
+
|
318
|
+
to build Chromium with the bundled DevTools front-end. You can also use
|
319
|
+
|
320
|
+
```bash
|
321
|
+
autoninja -C out/Default devtools_frontend_resources
|
322
|
+
```
|
323
|
+
|
324
|
+
to only build the DevTools front-end resources, which can afterwards be found in
|
325
|
+
the `out/Default/gen/third_party/devtools-frontend/src/front_end` folder.
|
326
|
+
|
327
|
+
### Run
|
328
|
+
|
329
|
+
Launch Chromium with the bundled DevTools front-end using
|
330
|
+
|
331
|
+
```bash
|
332
|
+
out/Default/chrome
|
333
|
+
```
|
334
|
+
|
335
|
+
or if you are only iterating on a small set of changes to the DevTools front-end
|
336
|
+
and used the `devtools_frontend_resources` build target, you can run Chrome with
|
337
|
+
the generated DevTools front-end artifacts using
|
338
|
+
|
339
|
+
```bash
|
340
|
+
out/Default/chrome --custom-devtools-frontend=file://$(realpath out/Default/gen/third_party/devtools-frontend/src/front_end)
|
341
|
+
```
|
342
|
+
|
343
|
+
afterwards, which can be quite a bit faster than building and linking the full
|
344
|
+
Chromium binary.
|
345
|
+
|
346
|
+
### Testing
|
347
|
+
|
348
|
+
To run the test suite, use `npm test` from within the DevTools front-end folder:
|
349
|
+
|
350
|
+
```bash
|
351
|
+
cd third_party/devtools-frontend/src
|
352
|
+
npm test
|
353
|
+
```
|
354
|
+
|
355
|
+
### Juggling the git submodules
|
356
|
+
|
357
|
+
Working on DevTools within a Chromium checkout means working across two separate
|
358
|
+
repositories (at the same time), which can be a bit tricky. Especially if you
|
359
|
+
are working on a change that spans across the boundary of the front-end and the
|
360
|
+
back-end, you'll need to cook two separate CLs. There are several ways to go
|
361
|
+
about this, and in here, we'll outline one somewhat well-lit path. You start by
|
362
|
+
creating a branch in both Chromium and DevTools:
|
363
|
+
|
364
|
+
```bash
|
365
|
+
git new-branch my-change-backend
|
366
|
+
pushd third_party/devtools-frontend/src
|
367
|
+
git new-branch my-change-frontend
|
368
|
+
popd
|
369
|
+
```
|
370
|
+
|
371
|
+
Now you go about developing your patch, and commit individually to Chromium and
|
372
|
+
DevTools repositories. When you're done, you can upload the changes individually
|
373
|
+
using `git cl upload`:
|
374
|
+
|
375
|
+
```bash
|
376
|
+
git cl upload
|
377
|
+
pushd third_party/devtools-frontend/src
|
378
|
+
git cl upload
|
379
|
+
popd
|
380
|
+
```
|
381
|
+
|
382
|
+
The tricky part is to get the checkout back into a well-defined state, which can
|
383
|
+
be accomplished using:
|
384
|
+
|
385
|
+
```bash
|
386
|
+
git checkout main
|
387
|
+
git -C third_party/devtools-frontend/src checkout \
|
388
|
+
`gclient getdep -r src/third_party/devtools-frontend/src`
|
389
|
+
gclient sync
|
390
|
+
```
|
391
|
+
|
392
|
+
When you need to rebase your changes, also make sure to run the above commands
|
393
|
+
and afterwards rebase the changes in the repositories separately:
|
394
|
+
|
395
|
+
```bash
|
396
|
+
git checkout my-change-backend
|
397
|
+
git rebase
|
398
|
+
pushd third_party/devtools-frontend/src
|
399
|
+
git checkout my-change-frontend
|
400
|
+
git rebase
|
401
|
+
popd
|
402
|
+
```
|
403
|
+
|
294
404
|
## Integrated checkout
|
295
405
|
|
296
406
|
**This solution is experimental, please report any trouble that you run into!**
|
297
407
|
|
298
|
-
The integrated workflow offers the best of both worlds, and allows for working
|
299
|
-
|
408
|
+
The integrated workflow offers the best of both worlds, and allows for working
|
409
|
+
on both Chromium and DevTools frontend side-by-side.
|
300
410
|
|
301
|
-
|
302
|
-
|
303
|
-
A full [Chromium checkout](#Chromium-checkout) is a pre-requisite for the following steps.
|
411
|
+
A full [Chromium checkout](#Chromium-checkout) is a pre-requisite for the
|
412
|
+
following steps.
|
304
413
|
|
305
414
|
### Untrack the existing devtools-frontend submodule
|
306
415
|
|
@@ -326,12 +435,6 @@ In the `custom_deps` section, insert this line:
|
|
326
435
|
"src/third_party/devtools-frontend/src": None,
|
327
436
|
```
|
328
437
|
|
329
|
-
Following this step, there are two approaches to manage your standalone checkout
|
330
|
-
|
331
|
-
### Single gclient project
|
332
|
-
|
333
|
-
**Note: it's not possible anymore to manage the two projects in separate gclient projects.**
|
334
|
-
|
335
438
|
For the integrated checkout, create a single gclient project that automatically gclient sync's all dependencies for both
|
336
439
|
repositories. After checking out chromium, modify the .gclient file for `chromium/src` to add the DevTools project:
|
337
440
|
|
@@ -363,27 +466,3 @@ ln -s src/third_party/devtools-frontend/src devtools-frontend
|
|
363
466
|
If you did run `gclient sync` first, remove the devtools-frontend directory and start over.
|
364
467
|
|
365
468
|
Run `gclient sync` after creating the link to fetch the dependencies for the standalone checkout.
|
366
|
-
|
367
|
-
## Chromium checkout
|
368
|
-
|
369
|
-
DevTools frontend can also be developed as part of the full Chromium checkout.
|
370
|
-
This workflow can be used to make small patches to DevTools as a Chromium engineer.
|
371
|
-
However, it is different to our infrastructure setup and how to execute general maintenance work, and therefore discouraged.
|
372
|
-
|
373
|
-
### Checking out source
|
374
|
-
|
375
|
-
Follow [instructions](https://www.chromium.org/developers/how-tos/get-the-code) to check out Chromium. DevTools frontend can be found under `third_party/devtools-frontend/src/`.
|
376
|
-
|
377
|
-
### Build
|
378
|
-
|
379
|
-
Refer to [instructions](https://www.chromium.org/developers/how-tos/get-the-code) to build Chromium.
|
380
|
-
To only build DevTools frontend, use `devtools_frontend_resources` as build target.
|
381
|
-
The resulting build artifacts for DevTools frontend can be found in `out/Default/gen/third_party/devtools-frontend/src/front_end`.
|
382
|
-
|
383
|
-
### Run
|
384
|
-
|
385
|
-
Run Chrome with bundled DevTools frontend:
|
386
|
-
|
387
|
-
```bash
|
388
|
-
out/Default/chrome
|
389
|
-
```
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
|
3
|
+
<defs>
|
4
|
+
<style>
|
5
|
+
.cls-1, .cls-2 {
|
6
|
+
fill: none;
|
7
|
+
}
|
8
|
+
|
9
|
+
.cls-2 {
|
10
|
+
stroke: #fff;
|
11
|
+
stroke-width: 16px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.cls-3 {
|
15
|
+
fill: #1a73e8;
|
16
|
+
}
|
17
|
+
|
18
|
+
.cls-4 {
|
19
|
+
fill: #8ab4f8;
|
20
|
+
}
|
21
|
+
|
22
|
+
.cls-5 {
|
23
|
+
fill: #fff;
|
24
|
+
}
|
25
|
+
|
26
|
+
.cls-6 {
|
27
|
+
fill: #ea4335;
|
28
|
+
}
|
29
|
+
|
30
|
+
.cls-7 {
|
31
|
+
fill: url(#Google_AI_Gradient_Blue-2);
|
32
|
+
}
|
33
|
+
|
34
|
+
.cls-8 {
|
35
|
+
fill: #bdc1c6;
|
36
|
+
}
|
37
|
+
|
38
|
+
.cls-9 {
|
39
|
+
fill: #aecbfa;
|
40
|
+
}
|
41
|
+
|
42
|
+
.cls-10 {
|
43
|
+
fill: url(#Google_AI_Gradient_Blue);
|
44
|
+
}
|
45
|
+
|
46
|
+
.cls-11 {
|
47
|
+
clip-path: url(#clippath);
|
48
|
+
}
|
49
|
+
|
50
|
+
.cls-12 {
|
51
|
+
fill: #e8eaed;
|
52
|
+
}
|
53
|
+
</style>
|
54
|
+
<filter id="filter0_d_8437_5135" x="40" y="44" width="520" height="520" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
55
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
56
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
57
|
+
<feMorphology radius="6" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_8437_5135"/>
|
58
|
+
<feOffset dy="4"/>
|
59
|
+
<feGaussianBlur stdDeviation="6"/>
|
60
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.235294 0 0 0 0 0.25098 0 0 0 0 0.262745 0 0 0 0.15 0"/>
|
61
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8437_5135"/>
|
62
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8437_5135" result="shape"/>
|
63
|
+
</filter>
|
64
|
+
<clipPath id="clippath">
|
65
|
+
<circle class="cls-1" cx="300" cy="300" r="226"/>
|
66
|
+
</clipPath>
|
67
|
+
<linearGradient id="Google_AI_Gradient_Blue" data-name="Google AI Gradient Blue" x1="290.3" y1="245.75" x2="470.47" y2="129.62" gradientUnits="userSpaceOnUse">
|
68
|
+
<stop offset=".37" stop-color="#4285f4"/>
|
69
|
+
<stop offset=".93" stop-color="#2daeb4"/>
|
70
|
+
</linearGradient>
|
71
|
+
<linearGradient id="Google_AI_Gradient_Blue-2" data-name="Google AI Gradient Blue" x1="295.09" y1="253.17" x2="475.25" y2="137.04" xlink:href="#Google_AI_Gradient_Blue"/>
|
72
|
+
</defs>
|
73
|
+
<circle id="baseplate" class="cls-4" cx="300" cy="300" r="242" filter="url(#filter0_d_8437_5135)"/>
|
74
|
+
<circle id="border" class="cls-2" cx="300" cy="300" r="234"/>
|
75
|
+
<g id="illustration">
|
76
|
+
<g class="cls-11">
|
77
|
+
<g>
|
78
|
+
<path class="cls-5" d="M302.85,34.71c-138.53,0-252.22,106.31-263.98,241.79l256.57,148.13c11.11,6.41,30.51,5.61,43.34-1.8l228.9-132.15c-4.76-142.18-121.5-255.98-264.83-255.98Z"/>
|
79
|
+
<path class="cls-12" d="M506.75,166.87l-18.87-10.9s0,0,0,0l-19.93-11.51c-.13-.08-.28-.14-.42-.2l-7.6-4.39c-.11-.08-.22-.17-.36-.25l-18.87-10.9s0,0,0,0l-18.87-10.9s0,0,0,0l-18.87-10.9s0,0,0,0l-19.93-11.51c-.13-.08-.28-.14-.42-.2l-9.05-5.23c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-4.98,2.88c-.7.41-1.05.88-1.05,1.41s.35,1,1.06,1.41l10.49,6.06s0,0,0,0l17.81,10.28s0,0,0,0l18.87,10.9s0,0,0,0l18.87,10.9s0,0,0,0l18.87,10.9s0,0,0,0l10.49,6.06h0s17.81,10.29,17.81,10.29c0,0,0,0,0,0l19.93,11.51c.71.41,1.52.61,2.44.61s1.74-.2,2.44-.61l5.01-2.9c.7-.41,1.06-.88,1.06-1.41,0-.53-.35-1-1.06-1.41Z"/>
|
80
|
+
<path class="cls-12" d="M350.67,77.35l-18.87-10.9s0,0,0,0l-19.93-11.51c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.7.41-1.06.88-1.06,1.41s.35,1,1.06,1.41l18.87,10.89s0,0,0,0l19.93,11.51c.71.41,1.52.61,2.44.61s1.74-.2,2.44-.61l5.02-2.9c.7-.41,1.05-.88,1.05-1.41s-.35-1-1.06-1.41Z"/>
|
81
|
+
<path class="cls-12" d="M345.69,102.03l-9.05-5.23c-.11-.08-.22-.16-.35-.24l-19.93-11.51c-.14-.08-.28-.14-.42-.21l-7.99-4.61s0,0,0,0l-9.05-5.22c-.11-.08-.22-.17-.36-.24l-19.93-11.51c-.7-.41-1.52-.61-2.44-.61-.92,0-1.74.2-2.44.61l-5.02,2.9c-.71.41-1.06.88-1.06,1.41,0,.53.35,1,1.06,1.41l18.87,10.9s0,0,0,0l9.44,5.45s0,0,0,0l9.44,5.45h0s18.87,10.9,18.87,10.9c0,0,0,0,0,0l10.49,6.06c.7.41,1.52.61,2.44.61s1.74-.2,2.44-.61l4.98-2.88c.7-.41,1.06-.88,1.06-1.41,0-.53-.35-1-1.06-1.41Z"/>
|
82
|
+
<path class="cls-12" d="M422.14,146.13l-18.87-10.9s0,0,0,0l-18.87-10.9s0,0,0,0l-19.93-11.51c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.71.41-1.06.88-1.06,1.41s.35,1,1.06,1.41l18.87,10.9s0,0,0,0l18.87,10.9s0,0,0,0l19.93,11.51c.7.41,1.52.61,2.44.61s1.74-.2,2.44-.61l5.02-2.9c.7-.41,1.05-.88,1.05-1.41s-.35-1-1.06-1.41Z"/>
|
83
|
+
<g>
|
84
|
+
<path class="cls-12" d="M414.75,218.49l-18.87-10.9s0,0,0,0l-19.93-11.51c-.13-.08-.27-.14-.42-.2l-7.62-4.4c-.11-.08-.22-.16-.35-.24l-18.87-10.9s0,0,0,0l-18.87-10.9s0,0,0,0l-18.87-10.9s0,0,0,0l-19.93-11.51c-.14-.08-.28-.14-.42-.21l-9.05-5.22c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-4.98,2.88c-.7.41-1.06.88-1.06,1.41s.35,1,1.06,1.41l10.49,6.06s.01,0,.02,0l17.8,10.28s0,0,0,0l19.93,11.51s0,0,0,0l17.81,10.28s0,0,0,0l19.93,11.51s0,0,0,0l9.43,5.45h0s18.87,10.9,18.87,10.9c0,0,0,0,0,0l18.87,10.89c.71.41,1.52.61,2.44.61s1.74-.2,2.44-.61l5.02-2.9c.7-.41,1.06-.88,1.06-1.41s-.35-1-1.06-1.41Z"/>
|
85
|
+
<path class="cls-12" d="M258.67,128.98l-19.93-11.51s0,0,0,0l-18.87-10.89c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.7.41-1.06.88-1.06,1.41s.35,1,1.06,1.41l18.87,10.9s0,0,0,0l19.93,11.51c.7.41,1.52.61,2.44.61s1.74-.2,2.44-.61l5.02-2.9c.7-.41,1.06-.88,1.06-1.41s-.35-1-1.06-1.41Z"/>
|
86
|
+
<path class="cls-12" d="M253.68,153.65l-9.06-5.23c-.11-.08-.22-.16-.35-.24l-19.93-11.51c-.13-.08-.27-.14-.42-.2l-9.05-5.23s0,0,0,0l-7.99-4.61c-.11-.08-.22-.16-.35-.24l-19.93-11.51c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.7.41-1.06.88-1.06,1.41,0,.53.35,1,1.06,1.41l19.93,11.51s0,0,0,0l9.43,5.45s0,0,0,0l8.37,4.83s0,0,0,0l18.87,10.9s0,0,0,0l10.49,6.06c.7.41,1.52.61,2.44.61s1.74-.2,2.44-.61l4.98-2.88c.7-.41,1.06-.88,1.06-1.41,0-.53-.35-1-1.06-1.41Z"/>
|
87
|
+
<path class="cls-12" d="M330.13,197.75l-18.87-10.9s0,0,0,0l-18.87-10.9s0,0,0,0l-19.93-11.51c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.7.41-1.06.88-1.06,1.41s.35,1,1.06,1.41l18.87,10.9s0,0,0,0l18.87,10.9s0,0,0,0l19.93,11.51c.7.41,1.52.61,2.44.61.92,0,1.74-.2,2.44-.61l5.02-2.9c.7-.41,1.06-.88,1.06-1.41,0-.53-.35-1-1.06-1.41Z"/>
|
88
|
+
</g>
|
89
|
+
<g>
|
90
|
+
<path class="cls-12" d="M384.03,333.26L79.31,157.34c-14.86,23.28-26.18,49.04-33.21,76.52l255.05,147.26c6.06,3.5,16.65,3.06,23.65-.98l57.52-33.21c7-4.04,7.76-10.16,1.7-13.66Z"/>
|
91
|
+
<path class="cls-6" d="M294.46,339.99h11.15s0,6.44,0,6.44h4.33s0-6.44,0-6.44h11.15s0-2.5,0-2.5h-11.15s0-6.44,0-6.44h-4.33s0,6.44,0,6.44h-11.15s0,2.5,0,2.5ZM292.29,347.68c-2.14-1.24-3.75-2.63-4.82-4.19-1.07-1.56-1.61-3.14-1.61-4.75,0-1.61.54-3.19,1.61-4.75,1.07-1.56,2.68-2.95,4.82-4.19,2.14-1.24,4.56-2.16,7.26-2.78,2.7-.62,5.44-.93,8.22-.93,2.79,0,5.53.31,8.22.93,2.7.62,5.12,1.55,7.26,2.78,2.14,1.24,3.75,2.63,4.82,4.19s1.61,3.14,1.61,4.75-.54,3.19-1.61,4.75c-1.07,1.56-2.68,2.95-4.82,4.19s-4.56,2.16-7.26,2.78-5.44.93-8.22.93c-2.79,0-5.53-.31-8.22-.93-2.7-.62-5.12-1.55-7.26-2.78Z"/>
|
92
|
+
<path class="cls-4" d="M278.44,301.35l-19.93-11.51s0,0,0,0l-18.87-10.9c-.13-.08-.28-.14-.42-.2l-7.61-4.39c-.11-.08-.22-.17-.36-.25l-18.87-10.9h0s-18.87-10.9-18.87-10.9c0,0,0,0,0,0l-18.87-10.9h0s-19.93-11.51-19.93-11.51c-.13-.08-.27-.14-.42-.2l-9.05-5.23c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-4.98,2.88c-.71.41-1.06.88-1.06,1.41s.35,1,1.06,1.41l9.43,5.44s0,0,0,0l18.87,10.9s0,0,0,0l18.87,10.9s0,0,0,0l18.87,10.9s0,0,0,0l18.87,10.9s0,0,0,0l9.43,5.44s0,0,0,0l19.93,11.51s0,0,0,0l18.87,10.9c.71.41,1.52.61,2.44.61s1.74-.2,2.44-.61l5.01-2.9c.7-.41,1.06-.88,1.06-1.41,0-.53-.35-1-1.06-1.41Z"/>
|
93
|
+
<path class="cls-8" d="M122.37,211.84l-19.93-11.51s0,0,0,0l-18.87-10.89c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.7.41-1.06.88-1.06,1.41,0,.53.35,1,1.06,1.41l19.93,11.51s0,0,0,0l18.87,10.9c.7.41,1.52.61,2.44.61.92,0,1.74-.2,2.44-.61l5.02-2.9c.7-.41,1.06-.88,1.05-1.41,0-.53-.35-1-1.05-1.41Z"/>
|
94
|
+
<path class="cls-8" d="M117.38,236.52l-9.06-5.23c-.11-.08-.22-.16-.35-.24l-19.93-11.51c-.13-.08-.28-.14-.42-.2l-9.05-5.23s0,0,0,0l-8-4.62c-.11-.08-.22-.16-.35-.24l-19.93-11.51c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.7.41-1.06.88-1.06,1.41s.35,1,1.06,1.41l18.87,10.9s0,0,0,0l10.49,6.06s0,0,0,0l9.43,5.45s0,0,0,0l18.86,10.89s0,0,0,0l9.43,5.45c.7.41,1.52.61,2.44.61.92,0,1.74-.2,2.44-.61l4.98-2.88c.7-.41,1.06-.88,1.06-1.41,0-.53-.35-1-1.06-1.41Z"/>
|
95
|
+
<path class="cls-8" d="M193.83,280.62l-18.87-10.9h0s-19.93-11.51-19.93-11.51c0,0,0,0,0,0l-18.87-10.89c-.7-.41-1.52-.61-2.44-.61s-1.74.2-2.44.61l-5.02,2.9c-.7.41-1.06.88-1.06,1.41,0,.53.35,1,1.06,1.41l19.93,11.51s0,0,0,0l17.81,10.28s0,0,0,0l19.93,11.51c.7.41,1.52.61,2.44.61s1.74-.2,2.44-.61l5.02-2.9c.7-.41,1.06-.88,1.06-1.41s-.35-1-1.06-1.41Z"/>
|
96
|
+
</g>
|
97
|
+
</g>
|
98
|
+
</g>
|
99
|
+
<g>
|
100
|
+
<path class="cls-3" d="M135.54,455c41.21,43.71,99.64,71,164.46,71s123.25-27.29,164.46-71H135.54Z"/>
|
101
|
+
<path class="cls-5" d="M288.7,489.5c0,2.69.96,5,2.88,6.92,1.92,1.92,4.23,2.88,6.92,2.88s5-.96,6.92-2.88,2.88-4.23,2.88-6.92-.96-5-2.88-6.92-4.23-2.88-6.92-2.88-5,.96-6.92,2.88c-1.92,1.92-2.88,4.23-2.88,6.92ZM298.5,504.2c.53,0,1.04-.02,1.53-.06s.98-.12,1.47-.24l-5.76,9.92c-6.17-.69-11.33-3.34-15.5-7.93s-6.25-10.06-6.25-16.38c0-1.72.16-3.38.49-4.99s.82-3.15,1.47-4.62l9.8,16.97c1.27,2.21,3.02,3.98,5.27,5.33,2.25,1.35,4.74,2.02,7.47,2.02ZM298.5,474.8c-3.27,0-6.17.95-8.7,2.85-2.53,1.9-4.29,4.32-5.27,7.26l-5.76-9.92c2.25-3.02,5.07-5.44,8.48-7.26,3.41-1.82,7.16-2.73,11.24-2.73s7.76.89,11.15,2.66,6.21,4.15,8.45,7.14h-19.6ZM320.92,479.7c.69,1.51,1.21,3.08,1.56,4.72s.52,3.33.52,5.08c0,6.33-2.07,11.78-6.22,16.35-4.14,4.57-9.26,7.23-15.34,7.96l9.8-16.97c.61-1.06,1.09-2.22,1.44-3.46s.52-2.54.52-3.89c0-1.92-.34-3.71-1.01-5.36s-1.6-3.13-2.79-4.44h11.51Z"/>
|
102
|
+
</g>
|
103
|
+
<g>
|
104
|
+
<path class="cls-9" d="M377.18,87.59l-70.03-40.43c-5.5-3.18-10.22-3.64-14.15-1.4l-17.62,10.24c3.93-2.24,8.64-1.78,14.15,1.4l70.03,40.43-.07,22.99,17.62-10.24.07-22.99h0s0,0,0,0Z"/>
|
105
|
+
<path class="cls-10" d="M429.07,322.2l.2-68.97,20.01,11.55-.2,68.97c-.02,6.32-1.99,10.61-5.93,12.84-3.93,2.25-8.64,1.78-14.15-1.4l-40.02-23.11-30.11,17.16-29.92-51.82-40.02-23.11c-5.5-3.18-10.2-8.15-14.11-14.91-3.91-6.76-5.85-13.31-5.83-19.63l.46-160.94c.02-6.32,1.99-10.6,5.93-12.84,3.93-2.24,8.64-1.78,14.15,1.4l70.03,40.43-.07,22.99-70.03-40.43-.46,160.94,140.06,80.86Z"/>
|
106
|
+
<path class="cls-9" d="M466.89,254.54l-20.01-11.55-17.62,10.24,20.01,11.55h0l-.2,68.97c-.02,6.32-1.99,10.61-5.93,12.84l17.62-10.24c3.93-2.23,5.91-6.52,5.93-12.84l.2-68.97h0,0Z"/>
|
107
|
+
<path class="cls-7" d="M503.16,195.26c.5.29,1.24,1.86,2.24,4.74,0,.29-.76,1-2.26,2.14-15.24-4.2-28.44-3.12-39.58,3.23-11.15,6.35-18.74,17.13-22.79,32.32,0,.57-1,.86-3,.85-.25-.14-1.24-1.58-2.99-4.31-3.95-19.8-11.46-39.3-22.53-58.48-11.07-19.18-24.21-35.46-39.43-48.85-.5-.57-1.24-2.15-2.24-4.74,0-.57.76-1.28,2.26-2.14,15.25,4.2,28.44,3.12,39.58-3.23,11.15-6.35,18.74-17.12,22.79-32.32.25-.43,1.25-.71,3-.85.5.29,1.5,1.72,2.99,4.3,4.2,19.96,11.77,39.48,22.72,58.59,10.95,19.11,24.03,35.36,39.25,48.74Z"/>
|
108
|
+
<path class="cls-9" d="M520.78,185.02c-15.21-13.38-28.3-29.63-39.25-48.74-10.95-19.11-18.52-38.63-22.72-58.59-1.49-2.58-2.49-4.02-2.99-4.3-1.33.1-2.22.29-2.69.56l-17.62,10.24c.47-.27,1.36-.46,2.69-.56.5.29,1.5,1.72,2.99,4.3,4.2,19.96,11.77,39.48,22.72,58.59,10.95,19.11,24.03,35.36,39.25,48.74.5.29,1.24,1.86,2.24,4.74,0,.29-.76,1-2.26,2.14l17.62-10.24c1.5-1.14,2.26-1.86,2.26-2.14-1-2.87-1.74-4.45-2.24-4.74Z"/>
|
109
|
+
<polygon class="cls-9" points="429.12 301.82 306.63 231.09 307.02 90.53 289.46 80.39 289.01 241.33 429.07 322.2 429.12 301.82"/>
|
110
|
+
<path class="cls-9" d="M412.41,116.79c3.11-1.77,5.93-3.9,8.49-6.36-9.03,2.66-19.18,2.45-30.45-.66l-17.62,10.24c15.25,4.2,28.44,3.12,39.58-3.23Z"/>
|
111
|
+
<path class="cls-9" d="M463.55,205.37c-11.15,6.35-18.74,17.13-22.79,32.32l17.62-10.24c2.92-10.95,7.69-19.6,14.3-25.96-3.18.94-6.23,2.23-9.14,3.88Z"/>
|
112
|
+
</g>
|
113
|
+
</g>
|
114
|
+
</svg>
|
@@ -0,0 +1,166 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
|
3
|
+
<defs>
|
4
|
+
<style>
|
5
|
+
.cls-1, .cls-2 {
|
6
|
+
fill: none;
|
7
|
+
}
|
8
|
+
|
9
|
+
.cls-3 {
|
10
|
+
fill: #4285f4;
|
11
|
+
}
|
12
|
+
|
13
|
+
.cls-4 {
|
14
|
+
fill: #cf594e;
|
15
|
+
}
|
16
|
+
|
17
|
+
.cls-5 {
|
18
|
+
fill: #f6aea9;
|
19
|
+
}
|
20
|
+
|
21
|
+
.cls-6 {
|
22
|
+
fill: #4285f4;
|
23
|
+
}
|
24
|
+
|
25
|
+
.cls-7 {
|
26
|
+
fill: #f28b82;
|
27
|
+
}
|
28
|
+
|
29
|
+
.cls-2 {
|
30
|
+
stroke: #fff;
|
31
|
+
stroke-width: 16px;
|
32
|
+
}
|
33
|
+
|
34
|
+
.cls-8 {
|
35
|
+
clip-path: url(#clippath-1);
|
36
|
+
}
|
37
|
+
|
38
|
+
.cls-9 {
|
39
|
+
fill: #1a73e8;
|
40
|
+
}
|
41
|
+
|
42
|
+
.cls-10 {
|
43
|
+
fill: #8ab4f8;
|
44
|
+
}
|
45
|
+
|
46
|
+
.cls-11, .cls-12 {
|
47
|
+
fill: #fff;
|
48
|
+
}
|
49
|
+
|
50
|
+
.cls-13 {
|
51
|
+
fill: #ea4335;
|
52
|
+
}
|
53
|
+
|
54
|
+
.cls-14 {
|
55
|
+
fill: #f8f9fa;
|
56
|
+
}
|
57
|
+
|
58
|
+
.cls-12 {
|
59
|
+
stroke: #dadce0;
|
60
|
+
stroke-miterlimit: 10;
|
61
|
+
stroke-width: 2.05px;
|
62
|
+
}
|
63
|
+
|
64
|
+
.cls-15 {
|
65
|
+
fill: #aecbfa;
|
66
|
+
}
|
67
|
+
|
68
|
+
.cls-16 {
|
69
|
+
fill: #3c4043;
|
70
|
+
}
|
71
|
+
|
72
|
+
.cls-17 {
|
73
|
+
fill: #202124;
|
74
|
+
}
|
75
|
+
|
76
|
+
.cls-18 {
|
77
|
+
clip-path: url(#clippath);
|
78
|
+
}
|
79
|
+
</style>
|
80
|
+
<clipPath id="clippath">
|
81
|
+
<path class="cls-1" d="M300,74c-16.12,0-31.84,1.7-47,4.91V31h-94v92.39c-51.8,41.41-85,105.13-85,176.61,0,124.82,101.18,226,226,226s226-101.18,226-226-101.18-226-226-226Z"/>
|
82
|
+
</clipPath>
|
83
|
+
<clipPath id="clippath-1">
|
84
|
+
<polygon class="cls-1" points="176.4 68.87 172.39 66.56 172.39 113.48 176.4 110.83 176.4 68.87"/>
|
85
|
+
</clipPath>
|
86
|
+
<filter id="filter0_d_8437_5135" x="40" y="44" width="520" height="520" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
87
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
88
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
89
|
+
<feMorphology radius="6" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_8437_5135"/>
|
90
|
+
<feOffset dy="4"/>
|
91
|
+
<feGaussianBlur stdDeviation="6"/>
|
92
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.235294 0 0 0 0 0.25098 0 0 0 0 0.262745 0 0 0 0.15 0"/>
|
93
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8437_5135"/>
|
94
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8437_5135" result="shape"/>
|
95
|
+
</filter>
|
96
|
+
</defs>
|
97
|
+
<circle id="baseplate" class="cls-10" cx="300" cy="300" r="242" filter="url(#filter0_d_8437_5135)"/>
|
98
|
+
<circle id="border" class="cls-2" cx="300" cy="300" r="234"/>
|
99
|
+
<g id="illustration">
|
100
|
+
<g class="cls-18">
|
101
|
+
<g>
|
102
|
+
<path class="cls-3" d="M491.99,522.78l-308.2-177.94c-6.3-3.63-11.4-13.38-11.4-21.78V49.82c0-8.39,5.1-12.25,11.4-8.62l308.2,177.94c6.3,3.63,11.4,13.38,11.4,21.78v273.24c0,8.39-5.1,12.25-11.4,8.62Z"/>
|
103
|
+
<path class="cls-14" d="M503.39,257.66l-154.96-89.46-11.72-6.77c-4.51-2.6-88-50.8-92.51-53.41l-7.5-4.33-64.32-37.13v257.56c0,7.81,5.48,17.31,12.25,21.21l306.5,176.96c6.76,3.91,12.25.74,12.25-7.07v-257.56Z"/>
|
104
|
+
<g>
|
105
|
+
<path class="cls-14" d="M196.55,64.54c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74s2.52-5.04,5.62-3.25c3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
106
|
+
<path class="cls-14" d="M216.63,76.13c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74s2.52-5.04,5.62-3.25c3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
107
|
+
<path class="cls-14" d="M236.71,87.73c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74,0-3.59,2.52-5.04,5.62-3.25,3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
108
|
+
</g>
|
109
|
+
<g>
|
110
|
+
<path class="cls-9" d="M203.08,127.28v-7.13c0-1.44.88-2.11,1.96-1.48l62.24,35.93c1.08.63,1.96,2.3,1.96,3.75v7.13c0,1.44-.88,2.11-1.96,1.48l-62.24-35.93c-1.08-.63-1.96-2.3-1.96-3.75Z"/>
|
111
|
+
<path class="cls-10" d="M203.08,152.32v-7.13c0-1.44.88-2.11,1.96-1.48l98.97,57.14c1.08.63,1.96,2.3,1.96,3.75v7.13c0,1.44-.88,2.11-1.96,1.48l-98.97-57.14c-1.08-.63-1.96-2.3-1.96-3.75Z"/>
|
112
|
+
<path class="cls-10" d="M312.09,215.26v-7.13c0-1.44.88-2.11,1.96-1.48l98.97,57.14c1.08.63,1.96,2.3,1.96,3.75v7.13c0,1.44-.88,2.11-1.96,1.48l-98.97-57.14c-1.08-.63-1.96-2.3-1.96-3.75Z"/>
|
113
|
+
<path class="cls-10" d="M203.08,179.31v-7.13c0-1.44.88-2.11,1.96-1.48l83.16,48.01c1.08.63,1.96,2.3,1.96,3.75v7.13c0,1.44-.88,2.11-1.96,1.48l-83.16-48.01c-1.08-.63-1.96-2.3-1.96-3.75Z"/>
|
114
|
+
<path class="cls-6" d="M203.08,205.27v-7.81c0-1.26.76-1.83,1.7-1.29l126.74,73.17c.94.54,1.7,2,1.7,3.26v7.81c0,1.26-.76,1.83-1.7,1.29l-126.74-73.17c-.94-.54-1.7-2-1.7-3.26Z"/>
|
115
|
+
<path class="cls-13" d="M340.38,284.54v-7.81c0-1.26.76-1.83,1.7-1.29l96.09,55.48c.94.54,1.7,2,1.7,3.26v7.81c0,1.26-.76,1.83-1.7,1.29l-96.09-55.48c-.94-.54-1.7-2-1.7-3.26Z"/>
|
116
|
+
<path class="cls-15" d="M203.08,231.83v-7.13c0-1.44.88-2.11,1.96-1.48l105.08,60.67c1.08.63,1.96,2.3,1.96,3.75v7.13c0,1.44-.88,2.11-1.96,1.48l-105.08-60.67c-1.08-.63-1.96-2.3-1.96-3.75Z"/>
|
117
|
+
<path class="cls-15" d="M203.08,256.88v-7.13c0-1.44.88-2.11,1.96-1.48l70.44,40.67c1.08.63,1.96,2.3,1.96,3.75v7.13c0,1.44-.88,2.11-1.96,1.48l-70.44-40.67c-1.08-.63-1.96-2.3-1.96-3.75Z"/>
|
118
|
+
<path class="cls-15" d="M203.08,283.86v-7.13c0-1.44.88-2.11,1.96-1.48l131.79,76.09c1.08.63,1.96,2.3,1.96,3.75v7.13c0,1.44-.88,2.11-1.96,1.48l-131.79-76.09c-1.08-.63-1.96-2.3-1.96-3.75Z"/>
|
119
|
+
<path class="cls-6" d="M203.08,309.83v-7.81c0-1.26.76-1.83,1.7-1.29l168.09,97.04c.94.54,1.7,2,1.7,3.26v7.81c0,1.26-.76,1.83-1.7,1.29l-168.09-97.04c-.94-.54-1.7-2-1.7-3.26Z"/>
|
120
|
+
<path class="cls-13" d="M437.62,368.96c-3.83-2.21-5.65-6.81-7.25-10.86-1.61-4.06-2.73-6.61-4.76-7.78s-3.15.08-4.76,2.29c-1.6,2.2-3.42,4.7-7.25,2.49-3.83-2.21-5.65-6.81-7.25-10.86-1.61-4.06-2.73-6.61-4.76-7.78-2.03-1.17-3.15.08-4.76,2.29-1.6,2.2-3.42,4.7-7.25,2.49-3.83-2.21-5.65-6.81-7.25-10.86-1.61-4.06-2.73-6.61-4.76-7.78s-3.15.08-4.76,2.29c-1.61,2.2-3.42,4.7-7.25,2.49-3.83-2.21-5.65-6.81-7.25-10.86-1.61-4.06-2.73-6.61-4.76-7.78s-3.15.08-4.76,2.29c-1.61,2.2-3.42,4.7-7.25,2.49v-3.35c2.03,1.17,3.15-.08,4.76-2.29,1.61-2.2,3.42-4.7,7.26-2.49,3.83,2.21,5.65,6.81,7.25,10.86,1.61,4.06,2.73,6.61,4.76,7.78,2.03,1.17,3.15-.08,4.76-2.29,1.61-2.2,3.42-4.7,7.25-2.49s5.65,6.81,7.25,10.86c1.61,4.06,2.73,6.61,4.76,7.78,2.03,1.17,3.15-.08,4.76-2.29,1.6-2.2,3.42-4.7,7.25-2.49,3.83,2.21,5.65,6.81,7.25,10.86,1.61,4.06,2.73,6.61,4.76,7.78,2.03,1.17,3.15-.08,4.76-2.29,1.6-2.2,3.42-4.7,7.25-2.49,3.83,2.21,5.65,6.81,7.25,10.86,1.61,4.06,2.73,6.61,4.76,7.78v3.35Z"/>
|
121
|
+
</g>
|
122
|
+
</g>
|
123
|
+
</g>
|
124
|
+
<g>
|
125
|
+
<path class="cls-9" d="M135.54,455c41.21,43.71,99.64,71,164.46,71s123.25-27.29,164.46-71H135.54Z"/>
|
126
|
+
<path class="cls-11" d="M288.7,489.5c0,2.69.96,5,2.88,6.92,1.92,1.92,4.23,2.88,6.92,2.88s5-.96,6.92-2.88,2.88-4.23,2.88-6.92-.96-5-2.88-6.92-4.23-2.88-6.92-2.88-5,.96-6.92,2.88c-1.92,1.92-2.88,4.23-2.88,6.92ZM298.5,504.2c.53,0,1.04-.02,1.53-.06s.98-.12,1.47-.25l-5.76,9.92c-6.17-.69-11.33-3.34-15.5-7.93s-6.25-10.06-6.25-16.38c0-1.72.16-3.38.49-4.99s.82-3.15,1.47-4.62l9.8,16.97c1.27,2.2,3.02,3.98,5.27,5.33,2.25,1.35,4.74,2.02,7.47,2.02ZM298.5,474.8c-3.27,0-6.17.95-8.7,2.85-2.53,1.9-4.29,4.32-5.27,7.26l-5.76-9.92c2.25-3.02,5.07-5.44,8.48-7.26,3.41-1.82,7.16-2.73,11.24-2.73s7.76.89,11.15,2.66,6.21,4.15,8.45,7.14h-19.6ZM320.92,479.7c.69,1.51,1.21,3.08,1.56,4.72s.52,3.33.52,5.08c0,6.33-2.07,11.78-6.22,16.35-4.14,4.57-9.26,7.23-15.34,7.96l9.8-16.97c.61-1.06,1.09-2.22,1.44-3.46s.52-2.54.52-3.89c0-1.92-.34-3.71-1.01-5.36s-1.6-3.13-2.79-4.44h11.51Z"/>
|
127
|
+
</g>
|
128
|
+
<g>
|
129
|
+
<path class="cls-13" d="M400.87,157.64c18.32,10.58,33.13,36.23,33.07,57.28-.06,21.06-14.97,29.55-33.29,18.97-18.32-10.58-33.13-36.23-33.07-57.28.06-21.06,14.97-29.55,33.29-18.97Z"/>
|
130
|
+
<path class="cls-5" d="M418.49,147.41c-9.22-5.32-17.58-5.82-23.61-2.31l-17.62,10.24c6.03-3.51,14.39-3.01,23.61,2.31,18.32,10.58,33.13,36.23,33.07,57.28-.03,10.46-3.72,17.82-9.68,21.28l17.62-10.24c5.96-3.46,9.65-10.82,9.68-21.28.06-21.06-14.75-46.71-33.07-57.28Z"/>
|
131
|
+
<path class="cls-11" d="M406.52,199.1l9.26-5.28c1.15-.65,1.15-2.78.01-4.75l-1.62-2.8c-.57-.99-1.32-1.75-2.07-2.18-.75-.43-1.5-.54-2.07-.21l-9.26,5.28h0s0,0,0,0l-9.2-15.94c-.57-.99-1.32-1.75-2.07-2.18s-1.5-.54-2.07-.21l-1.63.93c-1.15.65-1.15,2.78-.01,4.75l9.2,15.94-9.26,5.28c-1.15.65-1.15,2.78-.01,4.75l1.62,2.8c.57.99,1.32,1.75,2.07,2.18.75.43,1.5.54,2.07.21l9.26-5.28,9.2,15.94c.57.99,1.32,1.75,2.07,2.18.75.43,1.5.54,2.07.21l1.63-.93c1.15-.65,1.15-2.78.01-4.75l-9.2-15.94Z"/>
|
132
|
+
</g>
|
133
|
+
<g>
|
134
|
+
<g>
|
135
|
+
<path class="cls-17" d="M117.14,302.04c2.55,1.47,4.6,5.04,4.59,7.96,0,2.93-2.08,4.11-4.62,2.64l-5.84-3.37c-2.55-1.47-4.6-5.04-4.59-7.97,0-2.92,2.08-4.11,4.62-2.64l5.84,3.37Z"/>
|
136
|
+
<path class="cls-17" d="M116.94,330.17c1.99,1.15,3.82,3.69,4.41,6.33.72,3.22-.67,5.37-3.12,4.81l-5.6-1.31c-.44-.1-.88-.29-1.32-.54-1.99-1.15-3.82-3.69-4.41-6.33-.72-3.23.67-5.38,3.12-4.81l5.6,1.31c.44.1.88.29,1.32.54Z"/>
|
137
|
+
<path class="cls-17" d="M111.5,271.35c.44.25.88.58,1.32.99l5.59,5.15c2.44,2.24,3.81,5.99,3.08,8.38-.6,1.95-2.44,2.38-4.43,1.23-.44-.25-.88-.58-1.32-.99l-5.59-5.15c-2.44-2.25-3.81-6-3.08-8.38.6-1.95,2.44-2.38,4.43-1.23Z"/>
|
138
|
+
<path class="cls-16" d="M125.46,273.39l-5.59-5.15c-.44-.41-.88-.73-1.32-.99-1.24-.72-2.43-.82-3.29-.32l-7.05,4.1c.86-.5,2.05-.4,3.29.32.44.25.88.58,1.32.99l5.59,5.15c2.44,2.24,3.81,5.99,3.08,8.38-.23.73-.63,1.25-1.14,1.55l7.05-4.1c.52-.3.92-.82,1.14-1.55.74-2.39-.64-6.14-3.08-8.38Z"/>
|
139
|
+
<path class="cls-16" d="M124.19,297.95l-5.84-3.37c-1.28-.74-2.44-.81-3.28-.32l-7.05,4.1c.84-.49,2-.42,3.28.32l5.84,3.37c2.55,1.47,4.6,5.04,4.59,7.96,0,1.46-.52,2.48-1.35,2.96l7.05-4.1c.83-.48,1.34-1.51,1.35-2.96,0-2.92-2.05-6.49-4.59-7.96Z"/>
|
140
|
+
<path class="cls-16" d="M128.4,332.41c-.59-2.64-2.42-5.19-4.41-6.33-.44-.25-.88-.44-1.32-.54l-5.6-1.31c-.77-.18-1.43-.09-1.96.22l-7.05,4.1c.53-.31,1.19-.4,1.96-.22l5.6,1.31c.44.1.88.29,1.32.54,1.99,1.15,3.82,3.69,4.41,6.33.49,2.21,0,3.92-1.16,4.59l7.05-4.1c1.15-.67,1.65-2.38,1.16-4.59Z"/>
|
141
|
+
</g>
|
142
|
+
<g>
|
143
|
+
<path class="cls-13" d="M182.36,304.44c6.23,3.6,11.27,12.32,11.24,19.48l-.14,50.6c-.06,20.52-14.58,28.8-32.44,18.49l-8.39-4.84c-17.86-10.31-32.29-35.3-32.23-55.82l.14-50.6c.02-7.16,5.09-10.05,11.32-6.45l22.98,13.27-.29,100.65,4.53,2.62.29-100.65,22.98,13.27Z"/>
|
144
|
+
<path class="cls-7" d="M214.74,311.63c.02-7.16-5.01-15.88-11.24-19.48l-22.98-13.27-21.14,12.29,22.98,13.27c6.23,3.6,11.27,12.32,11.24,19.48l-.14,50.6h0,0c-.03,10.19-3.63,17.37-9.43,20.74l21.14-12.29c5.8-3.37,9.4-10.54,9.43-20.74h0s0,0,0,0l.14-50.6Z"/>
|
145
|
+
<path class="cls-4" d="M153,263c-3.14-1.81-5.98-1.98-8.03-.79l-21.14,12.29c2.05-1.19,4.89-1.02,8.03.79l22.98,13.27,21.14-12.29-22.98-13.27Z"/>
|
146
|
+
<polygon class="cls-17" points="159.38 291.18 159.09 391.83 154.56 389.21 154.84 288.56 159.38 291.18"/>
|
147
|
+
<path class="cls-17" d="M175.13,286.22c3.31,1.91,5.99,6.55,5.98,10.36l-.02,7.14-21.71-12.54-4.53-2.62-21.71-12.54.02-7.14c.01-3.81,2.71-5.34,6.02-3.43l2.85,1.64,30.26,17.47,2.85,1.64Z"/>
|
148
|
+
<path class="cls-16" d="M160.32,253.17c-1.67-.96-3.18-1.05-4.27-.42l-21.14,12.29c1.09-.63,2.6-.55,4.27.42l2.85,1.64,21.14-12.29-2.85-1.64Z"/>
|
149
|
+
<path class="cls-17" d="M157.22,254.3c3.04,1.75,6.1,4.55,8.78,8.23,5.3,7.28,7.58,15.95,6.28,22.04l-30.26-17.47c-.86-5.14-.11-9.74,2.44-12.48,3.02-3.26,7.85-3.15,12.76-.32Z"/>
|
150
|
+
<path class="cls-16" d="M187.14,250.25c-2.68-3.69-5.74-6.48-8.78-8.23-4.05-2.34-8.04-2.82-11.01-1.09l-21.14,12.29c2.97-1.73,6.97-1.24,11.01,1.09,3.04,1.75,6.1,4.55,8.78,8.23,5.3,7.28,7.58,15.95,6.28,22.04l21.14-12.29c1.3-6.09-.99-14.76-6.28-22.04Z"/>
|
151
|
+
<path class="cls-16" d="M196.27,273.93l-2.85-1.64-21.14,12.29,2.85,1.64c3.31,1.91,5.99,6.55,5.98,10.36l-.02,7.14,21.14-12.29.02-7.14c.01-3.81-2.67-8.45-5.98-10.36Z"/>
|
152
|
+
</g>
|
153
|
+
<g>
|
154
|
+
<path class="cls-16" d="M222.84,321.34c-.59-2.64-2.42-5.19-4.4-6.33-.44-.25-.88-.44-1.33-.54l-5.6-1.31h0c-.77-.18-1.43-.09-1.96.22l-7.05,4.1c.53-.31,1.19-.4,1.96-.22h0l5.6,1.31c.44.1.89.29,1.33.54,1.98,1.15,3.81,3.69,4.4,6.33.49,2.21,0,3.92-1.16,4.58l7.05-4.1c1.15-.67,1.65-2.37,1.16-4.58Z"/>
|
155
|
+
<path class="cls-17" d="M211.39,319.1c1.98,1.15,3.81,3.69,4.4,6.33.72,3.22-.67,5.37-3.12,4.8l-5.6-1.3c-.44-.1-.88-.29-1.32-.54-1.99-1.15-3.82-3.69-4.41-6.34-.72-3.22.67-5.37,3.12-4.8l5.6,1.31c.44.1.89.29,1.33.54Z"/>
|
156
|
+
<path class="cls-17" d="M211.43,346.56c2.55,1.47,4.6,5.03,4.59,7.96s-2.08,4.11-4.62,2.64l-5.84-3.37c-2.55-1.47-4.6-5.03-4.59-7.96,0-2.93,2.08-4.11,4.62-2.64l5.84,3.37Z"/>
|
157
|
+
<path class="cls-16" d="M218.48,342.47l-5.84-3.37c-1.28-.74-2.44-.81-3.28-.32l-7.05,4.1c.84-.49,2-.42,3.28.32l5.84,3.37c2.55,1.47,4.6,5.03,4.59,7.96,0,1.45-.52,2.48-1.34,2.96l7.05-4.1c.83-.48,1.34-1.5,1.34-2.96,0-2.93-2.05-6.49-4.59-7.96Z"/>
|
158
|
+
<path class="cls-17" d="M205.62,371.45c.44.25.88.58,1.33.99l5.59,5.15c2.44,2.24,3.81,5.99,3.08,8.38-.6,1.96-2.44,2.38-4.43,1.24-.44-.25-.88-.58-1.32-.99l-5.59-5.16c-2.44-2.24-3.81-5.99-3.08-8.38.6-1.95,2.44-2.38,4.42-1.24Z"/>
|
159
|
+
<path class="cls-16" d="M219.59,373.5l-5.59-5.15c-.44-.41-.89-.74-1.33-.99-1.24-.72-2.42-.82-3.28-.32l-7.05,4.1c.86-.5,2.04-.4,3.28.32.44.25.88.58,1.33.99l5.59,5.15c2.44,2.24,3.81,5.99,3.08,8.38-.23.74-.63,1.25-1.15,1.56l7.05-4.1c.52-.3.92-.82,1.15-1.56.74-2.38-.64-6.13-3.08-8.38Z"/>
|
160
|
+
</g>
|
161
|
+
</g>
|
162
|
+
<g class="cls-8">
|
163
|
+
<line class="cls-12" x1="173.35" y1="66.37" x2="173.35" y2="114"/>
|
164
|
+
</g>
|
165
|
+
</g>
|
166
|
+
</svg>
|