├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── SlicingCrash.yaml │ ├── bugreport.yaml │ ├── config.yml │ └── featurerequest.yaml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── conan-package-resources.yml │ ├── conan-package.yml │ ├── find-packages.yml │ ├── installers.yml │ ├── linux.yml │ ├── macos.yml │ ├── nightly-stable.yml │ ├── nightly-testing.yml │ ├── nightly.yml │ ├── nightly_release_notes.md.jinja │ ├── no-response.yml │ ├── printer-linter-format.yml │ ├── printer-linter-pr-diagnose.yml │ ├── printer-linter-pr-post.yml │ ├── process-pull-request.yml │ ├── release-process_feature-freeze.yml │ ├── release-process_release-candidate.yml │ ├── security_badge.yml │ ├── slicing-error-check.yml │ ├── stale.yml │ ├── unit-test-post.yml │ ├── unit-test.yml │ ├── update-translation.yml │ └── windows.yml ├── .gitignore ├── .printer-linter ├── .pylintrc ├── .run_templates ├── pycharm_cura_run.run.xml.jinja └── pycharm_cura_test.run.xml.jinja ├── CITATION.cff ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CuraVersion.py.jinja ├── FUNDING.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── UltiMaker-Cura.spec.jinja ├── conandata.yml ├── conanfile.py ├── cura-logo-dark.PNG ├── cura-logo.PNG ├── cura.sharedmimeinfo ├── cura ├── API │ ├── Account.py │ ├── Backups.py │ ├── ConnectionStatus.py │ ├── Interface │ │ ├── Settings.py │ │ └── __init__.py │ └── __init__.py ├── ApplicationMetadata.py ├── Arranging │ ├── ArrangeObjectsJob.py │ ├── Arranger.py │ ├── GridArrange.py │ ├── Nest2DArrange.py │ ├── ShapeArray.py │ └── __init__.py ├── AutoSave.py ├── BackendPlugin.py ├── Backups │ ├── Backup.py │ ├── BackupsManager.py │ └── __init__.py ├── BuildVolume.py ├── CameraAnimation.py ├── CrashHandler.py ├── CuraActions.py ├── CuraApplication.py ├── CuraPackageManager.py ├── CuraRenderer.py ├── CuraView.py ├── HitChecker.py ├── Layer.py ├── LayerData.py ├── LayerDataBuilder.py ├── LayerDataDecorator.py ├── LayerPolygon.py ├── MachineAction.py ├── Machines │ ├── ContainerNode.py │ ├── ContainerTree.py │ ├── IntentNode.py │ ├── MachineErrorChecker.py │ ├── MachineNode.py │ ├── MaterialGroup.py │ ├── MaterialNode.py │ ├── Models │ │ ├── ActiveIntentQualitiesModel.py │ │ ├── BaseMaterialsModel.py │ │ ├── BuildPlateModel.py │ │ ├── CompatibleMachineModel.py │ │ ├── CustomQualityProfilesDropDownMenuModel.py │ │ ├── DiscoveredCloudPrintersModel.py │ │ ├── DiscoveredPrintersModel.py │ │ ├── ExtrudersModel.py │ │ ├── FavoriteMaterialsModel.py │ │ ├── FirstStartMachineActionsModel.py │ │ ├── GenericMaterialsModel.py │ │ ├── GlobalStacksModel.py │ │ ├── IntentCategoryModel.py │ │ ├── IntentModel.py │ │ ├── IntentSelectionModel.py │ │ ├── IntentTranslations.py │ │ ├── MachineListModel.py │ │ ├── MachineModelUtils.py │ │ ├── MaterialBrandsModel.py │ │ ├── MaterialManagementModel.py │ │ ├── MultiBuildPlateModel.py │ │ ├── NozzleModel.py │ │ ├── QualityManagementModel.py │ │ ├── QualityProfilesDropDownMenuModel.py │ │ ├── QualitySettingsModel.py │ │ ├── SettingVisibilityPresetsModel.py │ │ ├── UserChangesModel.py │ │ └── __init__.py │ ├── QualityChangesGroup.py │ ├── QualityGroup.py │ ├── QualityNode.py │ ├── VariantNode.py │ ├── VariantType.py │ └── __init__.py ├── MultiplyObjectsJob.py ├── OAuth2 │ ├── AuthorizationHelpers.py │ ├── AuthorizationRequestHandler.py │ ├── AuthorizationRequestServer.py │ ├── AuthorizationService.py │ ├── KeyringAttribute.py │ ├── LocalAuthorizationServer.py │ ├── Models.py │ └── __init__.py ├── OneAtATimeIterator.py ├── Operations │ ├── PlatformPhysicsOperation.py │ ├── SetBuildPlateNumberOperation.py │ ├── SetParentOperation.py │ └── __init__.py ├── PickingPass.py ├── PlatformPhysics.py ├── PreviewPass.py ├── PrintJobPreviewImageProvider.py ├── PrintOrderManager.py ├── PrinterOutput │ ├── FirmwareUpdater.py │ ├── FormatMaps.py │ ├── GenericOutputController.py │ ├── Models │ │ ├── ExtruderConfigurationModel.py │ │ ├── ExtruderOutputModel.py │ │ ├── MaterialOutputModel.py │ │ ├── PrintJobOutputModel.py │ │ ├── PrinterConfigurationModel.py │ │ ├── PrinterOutputModel.py │ │ └── __init__.py │ ├── NetworkMJPGImage.py │ ├── NetworkedPrinterOutputDevice.py │ ├── Peripheral.py │ ├── PrintJobOutputModel.py │ ├── PrinterOutputController.py │ ├── PrinterOutputDevice.py │ ├── UploadMaterialsJob.py │ └── __init__.py ├── ReaderWriters │ ├── ProfileReader.py │ ├── ProfileWriter.py │ └── __init__.py ├── Scene │ ├── BlockSlicingDecorator.py │ ├── BuildPlateDecorator.py │ ├── ConvexHullDecorator.py │ ├── ConvexHullNode.py │ ├── CuraSceneController.py │ ├── CuraSceneNode.py │ ├── GCodeListDecorator.py │ ├── SliceableObjectDecorator.py │ ├── ZOffsetDecorator.py │ └── __init__.py ├── Settings │ ├── ActiveQuality.py │ ├── ContainerManager.py │ ├── CuraContainerRegistry.py │ ├── CuraContainerStack.py │ ├── CuraFormulaFunctions.py │ ├── CuraStackBuilder.py │ ├── DatabaseHandlers │ │ ├── IntentDatabaseHandler.py │ │ ├── QualityDatabaseHandler.py │ │ ├── VariantDatabaseHandler.py │ │ └── __init__.py │ ├── Exceptions.py │ ├── ExtruderManager.py │ ├── ExtruderStack.py │ ├── GlobalStack.py │ ├── IntentManager.py │ ├── MachineManager.py │ ├── MachineNameValidator.py │ ├── MaterialSettingsVisibilityHandler.py │ ├── PerObjectContainerStack.py │ ├── SetObjectExtruderOperation.py │ ├── SettingInheritanceManager.py │ ├── SettingOverrideDecorator.py │ ├── SettingVisibilityPreset.py │ ├── SidebarCustomMenuItemsModel.py │ ├── SimpleModeSettingsManager.py │ ├── __init__.py │ └── cura_empty_instance_containers.py ├── SingleInstance.py ├── Snapshot.py ├── Stages │ ├── CuraStage.py │ └── __init__.py ├── TaskManagement │ ├── OnExitCallbackManager.py │ └── __init__.py ├── UI │ ├── AddPrinterPagesModel.py │ ├── CuraSplashScreen.py │ ├── MachineActionManager.py │ ├── MachineSettingsManager.py │ ├── ObjectsModel.py │ ├── OpenSourceDependenciesModel.py │ ├── OpenSourceDependency.py │ ├── PrintInformation.py │ ├── RecommendedMode.py │ ├── TextManager.py │ ├── WelcomePagesModel.py │ ├── WhatsNewPagesModel.py │ └── __init__.py ├── UltimakerCloud │ ├── CloudMaterialSync.py │ ├── UltimakerCloudConstants.py │ ├── UltimakerCloudScope.py │ └── __init__.py ├── Utils │ ├── Decorators.py │ ├── NetworkingUtil.py │ ├── Threading.py │ └── __init__.py ├── XRayPass.py └── __init__.py ├── cura_app.py ├── doc └── settings_stacks.puml ├── licenses_thirdparty └── qt.md ├── packaging ├── AppImage-builder │ ├── AppImageBuilder.yml.jinja │ └── create_appimage.py ├── AppImage │ ├── AppRun │ ├── create_appimage.py │ ├── cura.appdata.xml │ └── cura.desktop.jinja ├── MacOS │ ├── build_macos.py │ ├── cura.entitlements │ └── cura_background_dmg.png ├── NSIS │ ├── Ultimaker-Cura.nsi.jinja │ ├── create_windows_installer.py │ ├── cura_banner_nsis.bmp │ └── fileassoc.nsh ├── cura_license.txt ├── icons │ ├── Cura.ico │ ├── VolumeIcons_Cura.icns │ ├── cura-128.png │ ├── cura-32.png │ ├── cura-48.png │ ├── cura-64.png │ ├── cura-icon.svg │ ├── cura-icon_128x128.png │ ├── cura-icon_256x256.png │ ├── cura-icon_64x64.png │ └── cura.icns └── msi │ ├── ExcludeComponents.xslt │ ├── UltiMaker-Cura.wxs.jinja │ ├── banner_side.bmp │ ├── banner_top.bmp │ ├── create_windows_msi.py │ └── cura_license.rtf ├── plugins ├── 3DConnexion │ ├── NavlibClient.py │ ├── OverlayNode.py │ ├── __init__.py │ └── plugin.json ├── 3MFReader │ ├── SpecificSettingsModel.py │ ├── ThreeMFReader.py │ ├── ThreeMFWorkspaceReader.py │ ├── WorkspaceDialog.py │ ├── WorkspaceDialog.qml │ ├── WorkspaceRow.qml │ ├── WorkspaceSection.qml │ ├── __init__.py │ └── plugin.json ├── 3MFWriter │ ├── Cura3mfVariant.py │ ├── SettingExport.py │ ├── SettingSelection.qml │ ├── SettingsExportGroup.py │ ├── SettingsExportModel.py │ ├── SettingsSelectionGroup.qml │ ├── ThreeMFVariant.py │ ├── ThreeMFWorkspaceWriter.py │ ├── ThreeMFWriter.py │ ├── UCPDialog.py │ ├── UCPDialog.qml │ ├── __init__.py │ ├── plugin.json │ └── tests │ │ └── TestMFWriter.py ├── AMFReader │ ├── AMFReader.py │ ├── __init__.py │ └── plugin.json ├── CuraDrive │ ├── __init__.py │ ├── plugin.json │ └── src │ │ ├── CreateBackupJob.py │ │ ├── DriveApiService.py │ │ ├── DrivePluginExtension.py │ │ ├── RestoreBackupJob.py │ │ ├── Settings.py │ │ ├── __init__.py │ │ └── qml │ │ ├── components │ │ ├── BackupList.qml │ │ ├── BackupListFooter.qml │ │ ├── BackupListItem.qml │ │ ├── BackupListItemDetails.qml │ │ └── BackupListItemDetailsRow.qml │ │ ├── images │ │ └── backup.svg │ │ ├── main.qml │ │ └── pages │ │ ├── BackupsPage.qml │ │ └── WelcomePage.qml ├── CuraEngineBackend │ ├── Cura.proto │ ├── CuraEngineBackend.py │ ├── ProcessGCodeJob.py │ ├── ProcessSlicedLayersJob.py │ ├── StartSliceJob.py │ ├── __init__.py │ └── plugin.json ├── CuraProfileReader │ ├── CuraProfileReader.py │ ├── __init__.py │ └── plugin.json ├── CuraProfileWriter │ ├── CuraProfileWriter.py │ ├── __init__.py │ └── plugin.json ├── DigitalLibrary │ ├── __init__.py │ ├── plugin.json │ ├── resources │ │ ├── images │ │ │ ├── arrow_down.svg │ │ │ ├── digital_factory.svg │ │ │ ├── placeholder.svg │ │ │ ├── projects_not_found.svg │ │ │ └── update.svg │ │ └── qml │ │ │ ├── CreateNewProjectPopup.qml │ │ │ ├── DigitalFactoryOpenDialog.qml │ │ │ ├── DigitalFactorySaveDialog.qml │ │ │ ├── LoadMoreProjectsCard.qml │ │ │ ├── OpenProjectFilesPage.qml │ │ │ ├── ProjectSummaryCard.qml │ │ │ ├── SaveProjectFilesPage.qml │ │ │ └── SelectProjectPage.qml │ ├── src │ │ ├── BackwardsCompatibleMessage.py │ │ ├── BaseModel.py │ │ ├── CloudError.py │ │ ├── DFFileExportAndUploadManager.py │ │ ├── DFFileUploader.py │ │ ├── DFLibraryFileUploadRequest.py │ │ ├── DFLibraryFileUploadResponse.py │ │ ├── DFPrintJobUploadRequest.py │ │ ├── DFPrintJobUploadResponse.py │ │ ├── DigitalFactoryApiClient.py │ │ ├── DigitalFactoryController.py │ │ ├── DigitalFactoryFeatureBudgetResponse.py │ │ ├── DigitalFactoryFileModel.py │ │ ├── DigitalFactoryFileProvider.py │ │ ├── DigitalFactoryFileResponse.py │ │ ├── DigitalFactoryOutputDevice.py │ │ ├── DigitalFactoryOutputDevicePlugin.py │ │ ├── DigitalFactoryProjectModel.py │ │ ├── DigitalFactoryProjectResponse.py │ │ ├── ExportFileJob.py │ │ ├── PaginationLinks.py │ │ ├── PaginationManager.py │ │ ├── PaginationMetadata.py │ │ ├── ResponseMeta.py │ │ └── __init__.py │ └── tests │ │ ├── TestDFFileExportAndUploadManager.py │ │ ├── TestDigitalFactoryFileModel.py │ │ ├── TestDigitalFactoryProjectModel.py │ │ ├── TestDigitalLibraryApiClient.py │ │ └── conftest.py ├── FirmwareUpdateChecker │ ├── FirmwareUpdateChecker.py │ ├── FirmwareUpdateCheckerJob.py │ ├── FirmwareUpdateCheckerLookup.py │ ├── FirmwareUpdateCheckerMessage.py │ ├── __init__.py │ ├── plugin.json │ └── tests │ │ ├── TestFirmwareUpdateChecker.py │ │ └── __init__.py ├── FirmwareUpdater │ ├── FirmwareUpdaterMachineAction.py │ ├── FirmwareUpdaterMachineAction.qml │ ├── __init__.py │ └── plugin.json ├── GCodeGzReader │ ├── GCodeGzReader.py │ ├── __init__.py │ └── plugin.json ├── GCodeGzWriter │ ├── GCodeGzWriter.py │ ├── __init__.py │ └── plugin.json ├── GCodeProfileReader │ ├── GCodeProfileReader.py │ ├── __init__.py │ └── plugin.json ├── GCodeReader │ ├── FlavorParser.py │ ├── GCodeReader.py │ ├── MarlinFlavorParser.py │ ├── RepRapFlavorParser.py │ ├── __init__.py │ └── plugin.json ├── GCodeWriter │ ├── GCodeWriter.py │ ├── __init__.py │ └── plugin.json ├── ImageReader │ ├── ConfigUI.qml │ ├── ImageReader.py │ ├── ImageReaderUI.py │ ├── __init__.py │ └── plugin.json ├── LegacyProfileReader │ ├── DictionaryOfDoom.json │ ├── LegacyProfileReader.py │ ├── __init__.py │ ├── plugin.json │ └── tests │ │ ├── TestLegacyProfileReader.py │ │ └── normal_case.ini ├── MachineSettingsAction │ ├── MachineSettingsAction.py │ ├── MachineSettingsAction.qml │ ├── MachineSettingsExtruderTab.qml │ ├── MachineSettingsPrinterTab.qml │ ├── __init__.py │ └── plugin.json ├── MakerbotWriter │ ├── MakerbotWriter.py │ ├── __init__.py │ └── plugin.json ├── Marketplace │ ├── CloudApiModel.py │ ├── CloudSync │ │ ├── CloudApiClient.py │ │ ├── CloudPackageChecker.py │ │ ├── DiscrepanciesPresenter.py │ │ ├── DownloadPresenter.py │ │ ├── LicenseModel.py │ │ ├── LicensePresenter.py │ │ ├── RestartApplicationPresenter.py │ │ ├── SubscribedPackagesModel.py │ │ ├── SyncOrchestrator.py │ │ └── __init__.py │ ├── Constants.py │ ├── InstallMissingPackagesDialog.py │ ├── LocalPackageList.py │ ├── Marketplace.py │ ├── MissingPackageList.py │ ├── PackageList.py │ ├── PackageModel.py │ ├── RemotePackageList.py │ ├── __init__.py │ ├── plugin.json │ └── resources │ │ ├── images │ │ ├── Plugin.svg │ │ ├── Spool.svg │ │ └── placeholder.svg │ │ └── qml │ │ ├── CompatibilityDialog.qml │ │ ├── InstallMissingPackagesDialog.qml │ │ ├── LicenseDialog.qml │ │ ├── ManageButton.qml │ │ ├── ManagePackagesButton.qml │ │ ├── ManagedPackages.qml │ │ ├── Marketplace.qml │ │ ├── Materials.qml │ │ ├── MissingPackages.qml │ │ ├── MultipleLicenseDialog.qml │ │ ├── OnboardBanner.qml │ │ ├── PackageCard.qml │ │ ├── PackageCardHeader.qml │ │ ├── PackageDetails.qml │ │ ├── PackagePage.qml │ │ ├── PackageTypeTab.qml │ │ ├── Packages.qml │ │ ├── Plugins.qml │ │ └── VerifiedIcon.qml ├── ModelChecker │ ├── ModelChecker.py │ ├── ModelChecker.qml │ ├── __init__.py │ ├── model_checker.svg │ └── plugin.json ├── MonitorStage │ ├── MonitorMain.qml │ ├── MonitorMenu.qml │ ├── MonitorStage.py │ ├── __init__.py │ └── plugin.json ├── PaintTool │ ├── BrushColorButton.qml │ ├── BrushShapeButton.qml │ ├── MultiMaterialExtruderConverter.py │ ├── PaintClearCommand.py │ ├── PaintCommand.py │ ├── PaintModeButton.qml │ ├── PaintStrokeCommand.py │ ├── PaintTool.py │ ├── PaintTool.qml │ ├── PaintView.py │ ├── PrepareTextureJob.py │ ├── __init__.py │ ├── paint.shader │ └── plugin.json ├── PerObjectSettingsTool │ ├── PerObjectCategory.qml │ ├── PerObjectItem.qml │ ├── PerObjectSettingVisibilityHandler.py │ ├── PerObjectSettingsPanel.qml │ ├── PerObjectSettingsTool.py │ ├── SettingPickDialog.qml │ ├── __init__.py │ └── plugin.json ├── PostProcessingPlugin │ ├── PostProcessingPlugin.py │ ├── PostProcessingPlugin.qml │ ├── README.md │ ├── Script.py │ ├── Script.svg │ ├── __init__.py │ ├── plugin.json │ ├── scripts │ │ ├── AddCoolingProfile.py │ │ ├── AnnealingOrDrying.py │ │ ├── ChangeAtZ.py │ │ ├── ColorMix.py │ │ ├── CreateThumbnail.py │ │ ├── DisplayFilenameAndLayerOnLCD.py │ │ ├── DisplayInfoOnLCD.py │ │ ├── DisplayProgressOnLCD.py │ │ ├── ExampleScript.md │ │ ├── FilamentChange.py │ │ ├── InsertAtLayerChange.py │ │ ├── LimitXYAccelJerk.py │ │ ├── PauseAtHeight.py │ │ ├── PurgeLinesAndUnload.py │ │ ├── RetractContinue.py │ │ ├── SearchAndReplace.py │ │ ├── Stretch.py │ │ ├── TimeLapse.py │ │ ├── TweakAtZ.py │ │ ├── UsePreviousProbeMeasurements.py │ │ └── ZHopOnTravel.py │ └── tests │ │ ├── TestPostProcessingPlugin.py │ │ └── __init__.py ├── PrepareStage │ ├── PrepareMain.qml │ ├── PrepareMenu.qml │ ├── PrepareStage.py │ ├── __init__.py │ └── plugin.json ├── PreviewStage │ ├── PreviewMain.qml │ ├── PreviewMenu.qml │ ├── PreviewStage.py │ ├── __init__.py │ └── plugin.json ├── README_plugins.txt ├── RemovableDriveOutputDevice │ ├── LinuxRemovableDrivePlugin.py │ ├── OSXRemovableDrivePlugin.py │ ├── RemovableDriveOutputDevice.py │ ├── RemovableDrivePlugin.py │ ├── WindowsRemovableDrivePlugin.py │ ├── __init__.py │ └── plugin.json ├── SentryLogger │ ├── SentryLogger.py │ ├── __init__.py │ └── plugin.json ├── SimulationView │ ├── LayerSlider.qml │ ├── NozzleNode.py │ ├── PathSlider.qml │ ├── SimulationPass.py │ ├── SimulationSliderLabel.qml │ ├── SimulationView.py │ ├── SimulationViewMainComponent.qml │ ├── SimulationViewMenuComponent.qml │ ├── SimulationViewProxy.py │ ├── __init__.py │ ├── layers.shader │ ├── layers3d.shader │ ├── layers3d_shadow.shader │ ├── layers_shadow.shader │ ├── plugin.json │ ├── resources │ │ ├── Pause.svg │ │ ├── Play.svg │ │ └── nozzle.stl │ └── simulationview_composite.shader ├── SliceInfoPlugin │ ├── MoreInfoWindow.qml │ ├── SliceInfo.py │ ├── __init__.py │ ├── example_data.html │ └── plugin.json ├── SolidView │ ├── SolidView.py │ ├── __init__.py │ ├── plugin.json │ └── xray_overlay.shader ├── SupportEraser │ ├── SupportEraser.py │ ├── __init__.py │ └── plugin.json ├── TrimeshReader │ ├── TrimeshReader.py │ ├── __init__.py │ └── plugin.json ├── UFPReader │ ├── UFPReader.py │ ├── __init__.py │ └── plugin.json ├── UFPWriter │ ├── UFPWriter.py │ ├── __init__.py │ ├── kitten.png │ └── plugin.json ├── UM3NetworkPrinting │ ├── __init__.py │ ├── plugin.json │ ├── resources │ │ ├── png │ │ │ ├── MakerBot Method X.png │ │ │ ├── MakerBot Method XL.png │ │ │ ├── MakerBot Method.png │ │ │ ├── MakerBot Sketch.png │ │ │ ├── Ultimaker 2+ Connect.png │ │ │ ├── Ultimaker 3 Extended.png │ │ │ ├── Ultimaker 3.png │ │ │ ├── Ultimaker Factor 4.png │ │ │ ├── Ultimaker S3.png │ │ │ ├── Ultimaker S5.png │ │ │ ├── Ultimaker S6.png │ │ │ ├── Ultimaker S7.png │ │ │ └── Ultimaker S8.png │ │ ├── qml │ │ │ ├── CameraButton.qml │ │ │ ├── DiscoverUM3Action.qml │ │ │ ├── ExpandableCard.qml │ │ │ ├── GenericPopUp.qml │ │ │ ├── MonitorCarousel.qml │ │ │ ├── MonitorConfigOverrideDialog.qml │ │ │ ├── MonitorContextMenu.qml │ │ │ ├── MonitorContextMenuButton.qml │ │ │ ├── MonitorExtruderConfiguration.qml │ │ │ ├── MonitorIconExtruder.qml │ │ │ ├── MonitorInfoBlurb.qml │ │ │ ├── MonitorItem.qml │ │ │ ├── MonitorPrintJobCard.qml │ │ │ ├── MonitorPrintJobPreview.qml │ │ │ ├── MonitorPrintJobProgressBar.qml │ │ │ ├── MonitorPrinterCard.qml │ │ │ ├── MonitorPrinterConfiguration.qml │ │ │ ├── MonitorPrinterPill.qml │ │ │ ├── MonitorQueue.qml │ │ │ ├── MonitorStage.qml │ │ │ ├── PrintJobContextMenuItem.qml │ │ │ ├── PrintWindow.qml │ │ │ └── PrinterVideoStream.qml │ │ └── svg │ │ │ ├── Camera.svg │ │ │ ├── CancelCircle.svg │ │ │ ├── Check.svg │ │ │ ├── CheckCircle.svg │ │ │ ├── CloudPlatform.svg │ │ │ ├── PauseCircle.svg │ │ │ ├── Prohibition.svg │ │ │ ├── UM3-icon.svg │ │ │ ├── UM3x-icon.svg │ │ │ ├── UMs5-icon.svg │ │ │ ├── Warning.svg │ │ │ ├── icons │ │ │ ├── CameraPhoto.svg │ │ │ └── Extruder.svg │ │ │ └── ultibot.svg │ └── src │ │ ├── Cloud │ │ ├── AbstractCloudOutputDevice.py │ │ ├── CloudApiClient.py │ │ ├── CloudOutputDevice.py │ │ ├── CloudOutputDeviceManager.py │ │ ├── ToolPathUploader.py │ │ ├── __init__.py │ │ └── machine_id_to_name.json │ │ ├── ClusterOutputController.py │ │ ├── ExportFileJob.py │ │ ├── MeshFormatHandler.py │ │ ├── Messages │ │ ├── AuthorizationRequiredMessage.py │ │ ├── CloudFlowMessage.py │ │ ├── LegacyDeviceNoLongerSupportedMessage.py │ │ ├── MaterialSyncMessage.py │ │ ├── NewPrinterDetectedMessage.py │ │ ├── NotClusterHostMessage.py │ │ ├── PrintJobAwaitingApprovalMessage.py │ │ ├── PrintJobUploadBlockedMessage.py │ │ ├── PrintJobUploadErrorMessage.py │ │ ├── PrintJobUploadPrinterInactiveMessage.py │ │ ├── PrintJobUploadProgressMessage.py │ │ ├── PrintJobUploadQueueFullMessage.py │ │ ├── PrintJobUploadSuccessMessage.py │ │ ├── RemovedPrintersMessage.py │ │ └── __init__.py │ │ ├── Models │ │ ├── BaseModel.py │ │ ├── ConfigurationChangeModel.py │ │ ├── Http │ │ │ ├── CloudClusterResponse.py │ │ │ ├── CloudClusterStatus.py │ │ │ ├── CloudClusterWithConfigResponse.py │ │ │ ├── CloudError.py │ │ │ ├── CloudPrintJobResponse.py │ │ │ ├── CloudPrintJobUploadRequest.py │ │ │ ├── CloudPrintResponse.py │ │ │ ├── ClusterBuildPlate.py │ │ │ ├── ClusterMaterial.py │ │ │ ├── ClusterPrintCoreConfiguration.py │ │ │ ├── ClusterPrintJobConfigurationChange.py │ │ │ ├── ClusterPrintJobConstraints.py │ │ │ ├── ClusterPrintJobImpediment.py │ │ │ ├── ClusterPrintJobStatus.py │ │ │ ├── ClusterPrinterConfigurationMaterial.py │ │ │ ├── ClusterPrinterMaterialStation.py │ │ │ ├── ClusterPrinterMaterialStationSlot.py │ │ │ ├── ClusterPrinterStatus.py │ │ │ ├── PrinterSystemStatus.py │ │ │ └── __init__.py │ │ ├── LocalMaterial.py │ │ ├── UM3PrintJobOutputModel.py │ │ └── __init__.py │ │ ├── Network │ │ ├── ClusterApiClient.py │ │ ├── LocalClusterOutputDevice.py │ │ ├── LocalClusterOutputDeviceManager.py │ │ ├── SendMaterialJob.py │ │ ├── ZeroConfClient.py │ │ └── __init__.py │ │ ├── UM3OutputDevicePlugin.py │ │ ├── UltimakerNetworkedPrinterAction.py │ │ ├── UltimakerNetworkedPrinterOutputDevice.py │ │ ├── Utils.py │ │ └── __init__.py ├── USBPrinting │ ├── AutoDetectBaudJob.py │ ├── AvrFirmwareUpdater.py │ ├── MonitorItem.qml │ ├── USBPrinterOutputDevice.py │ ├── USBPrinterOutputDeviceManager.py │ ├── __init__.py │ ├── avr_isp │ │ ├── __init__.py │ │ ├── chipDB.py │ │ ├── intelHex.py │ │ ├── ispBase.py │ │ └── stk500v2.py │ └── plugin.json ├── UltimakerMachineActions │ ├── BedLevelMachineAction.py │ ├── BedLevelMachineAction.qml │ ├── UMOUpgradeSelection.py │ ├── UMOUpgradeSelectionMachineAction.qml │ ├── __init__.py │ └── plugin.json ├── VersionUpgrade │ ├── VersionUpgrade21to22 │ │ ├── MachineInstance.py │ │ ├── Preferences.py │ │ ├── Profile.py │ │ ├── VersionUpgrade21to22.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade22to24 │ │ ├── VersionUpgrade.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade25to26 │ │ ├── VersionUpgrade25to26.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade25to26.py │ ├── VersionUpgrade26to27 │ │ ├── VersionUpgrade26to27.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade26to27.py │ ├── VersionUpgrade27to30 │ │ ├── VersionUpgrade27to30.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade27to30.py │ ├── VersionUpgrade30to31 │ │ ├── VersionUpgrade30to31.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade32to33 │ │ ├── VersionUpgrade32to33.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade33to34 │ │ ├── VersionUpgrade33to34.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade34to35 │ │ ├── VersionUpgrade34to35.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade34to35.py │ ├── VersionUpgrade35to40 │ │ ├── VersionUpgrade35to40.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade40to41 │ │ ├── VersionUpgrade40to41.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade411to412 │ │ ├── VersionUpgrade411to412.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade413to50 │ │ ├── VersionUpgrade413to50.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade41to42 │ │ ├── VersionUpgrade41to42.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade42to43 │ │ ├── VersionUpgrade42to43.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade43to44 │ │ ├── VersionUpgrade43to44.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade43To44.py │ ├── VersionUpgrade44to45 │ │ ├── VersionUpgrade44to45.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade44To45.py │ ├── VersionUpgrade45to46 │ │ ├── VersionUpgrade45to46.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade460to462 │ │ ├── VersionUpgrade460to462.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade462to47 │ │ ├── VersionUpgrade462to47.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade47to48 │ │ ├── VersionUpgrade47to48.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade48to49 │ │ ├── VersionUpgrade48to49.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade49to410 │ │ ├── VersionUpgrade49to410.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade52to53 │ │ ├── VersionUpgrade52to53.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade53to54 │ │ ├── VersionUpgrade53to54.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade54to55 │ │ ├── VersionUpgrade54to55.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade56to57 │ │ ├── VersionUpgrade56to57.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade58to59 │ │ ├── VersionUpgrade58to59.py │ │ ├── __init__.py │ │ └── plugin.json │ └── VersionUpgrade59to510 │ │ ├── VersionUpgrade59to510.py │ │ ├── __init__.py │ │ └── plugin.json ├── X3DReader │ ├── X3DReader.py │ ├── __init__.py │ └── plugin.json ├── XRayView │ ├── XRayView.py │ ├── __init__.py │ └── plugin.json └── XmlMaterialProfile │ ├── PluginInfo.py │ ├── XmlMaterialProfile.py │ ├── XmlMaterialUpgrader.py │ ├── XmlMaterialValidator.py │ ├── __init__.py │ ├── plugin.json │ └── tests │ └── TestXmlMaterialProfile.py ├── printer-linter ├── README.md ├── pyproject.toml ├── setup.cfg ├── setup.py └── src │ ├── printerlinter │ ├── __init__.py │ ├── diagnostic.py │ ├── factory.py │ ├── formatters │ │ ├── __init__.py │ │ ├── def_json_formatter.py │ │ ├── formatter.py │ │ └── inst_cfg_formatter.py │ ├── linters │ │ ├── __init__.py │ │ ├── defintion.py │ │ ├── directory.py │ │ ├── formulas.py │ │ ├── linter.py │ │ ├── meshes.py │ │ └── profile.py │ └── replacement.py │ └── terminal.py ├── pytest.ini ├── resources ├── README_resources.txt ├── bundled_packages │ └── cura.json ├── conandata.yml ├── conanfile.py ├── definitions │ ├── 101Hero.def.json │ ├── 3dator.def.json │ ├── 3di_base.def.json │ ├── 3di_d300.def.json │ ├── 3dtech_semi_professional.def.json │ ├── Geeetech_Base_Dual_Extruder.def.json │ ├── Geeetech_Base_Multi_Extruder.def.json │ ├── Geeetech_Base_Single_Extruder.def.json │ ├── I3MetalMotion.def.json │ ├── Mark2_for_Ultimaker2.def.json │ ├── SV01.def.json │ ├── SV02.def.json │ ├── SV03.def.json │ ├── abax_pri3.def.json │ ├── abax_pri5.def.json │ ├── abax_titan.def.json │ ├── alfawise_u20.def.json │ ├── alfawise_u30.def.json │ ├── alya3dp.def.json │ ├── alyanx3dp.def.json │ ├── anet3d.def.json │ ├── anet3d_a2.def.json │ ├── anet3d_a2_plus.def.json │ ├── anet3d_a6.def.json │ ├── anet3d_a8.def.json │ ├── anet3d_a8_plus.def.json │ ├── anet3d_e10.def.json │ ├── anet3d_e12.def.json │ ├── anet3d_e16.def.json │ ├── anet3d_et4.def.json │ ├── anet3d_et4_pro.def.json │ ├── anet3d_et4_x.def.json │ ├── anet3d_et5.def.json │ ├── anet3d_et5_x.def.json │ ├── ankermake_m5.def.json │ ├── ankermake_m5c.def.json │ ├── anycubic_4max.def.json │ ├── anycubic_chiron.def.json │ ├── anycubic_i3_mega.def.json │ ├── anycubic_i3_mega_s.def.json │ ├── anycubic_i3_mega_x.def.json │ ├── anycubic_kobra.def.json │ ├── anycubic_kobra2.def.json │ ├── anycubic_kobra3v2.def.json │ ├── anycubic_kobra3v2_ACE_PRO.def.json │ ├── anycubic_kobra_go.def.json │ ├── anycubic_kobra_max.def.json │ ├── anycubic_kobra_plus.def.json │ ├── anycubic_kobra_s1.def.json │ ├── anycubic_kossel.def.json │ ├── anycubic_kossel_linear_plus.def.json │ ├── anycubic_kossel_pulley.def.json │ ├── anycubic_mega_zero.def.json │ ├── anycubic_vyper.def.json │ ├── arjun300.def.json │ ├── arjun_duplication.def.json │ ├── arjun_mirrored.def.json │ ├── arjunpro300.def.json │ ├── arjunpro_duplication.def.json │ ├── arjunpro_mirrored.def.json │ ├── artillery_base.def.json │ ├── artillery_genius.def.json │ ├── artillery_hornet.def.json │ ├── artillery_sidewinder_x1.def.json │ ├── atmat_asterion.def.json │ ├── atmat_asterion_ht.def.json │ ├── atmat_galaxy_500.def.json │ ├── atmat_galaxy_600.def.json │ ├── atmat_signal_pro_300_v1.def.json │ ├── atmat_signal_pro_300_v2.def.json │ ├── atmat_signal_pro_400_v1.def.json │ ├── atmat_signal_pro_400_v2.def.json │ ├── atmat_signal_pro_500_v1.def.json │ ├── atmat_signal_pro_500_v2.def.json │ ├── atmat_signal_pro_base.def.json │ ├── atmat_signal_xl.def.json │ ├── atmat_signal_xxl.def.json │ ├── atmat_signal_xxxl.def.json │ ├── atom2.def.json │ ├── atom3.def.json │ ├── atom3_lite.def.json │ ├── atomstack_cambrian_base.def.json │ ├── atomstack_cambrianmaxe175.def.json │ ├── atomstack_cambrianmaxe285.def.json │ ├── atomstack_cambrianproe175.def.json │ ├── atomstack_cambrianproe285.def.json │ ├── beamup_l.def.json │ ├── beamup_s.def.json │ ├── bfb.def.json │ ├── bibo2_dual.def.json │ ├── biqu_b1.def.json │ ├── biqu_b1_abl.def.json │ ├── biqu_b2.def.json │ ├── biqu_base.def.json │ ├── biqu_bx_abl.def.json │ ├── biqu_hurakan.def.json │ ├── blocks_base.def.json │ ├── blocks_mkii.def.json │ ├── blocks_one.def.json │ ├── blocks_pros100.def.json │ ├── blocks_pros30.def.json │ ├── blocks_r21.def.json │ ├── blocks_rd50.def.json │ ├── blocks_rd50duplicate.def.json │ ├── blocks_rd50mirror.def.json │ ├── blocks_zero.def.json │ ├── blv_mgn_cube_300.def.json │ ├── blv_mgn_cube_350.def.json │ ├── blv_mgn_cube_base.def.json │ ├── bq_hephestos.def.json │ ├── bq_hephestos_2.def.json │ ├── bq_hephestos_xl.def.json │ ├── bq_witbox.def.json │ ├── bq_witbox_2.def.json │ ├── builder_premium_large.def.json │ ├── builder_premium_medium.def.json │ ├── builder_premium_small.def.json │ ├── cartesio.def.json │ ├── cocoon_create.def.json │ ├── cocoon_create_modelmaker.def.json │ ├── cocoon_create_touch.def.json │ ├── crazy3dprint_base.def.json │ ├── crazy3dprint_cz_300.def.json │ ├── creality_base.def.json │ ├── creality_cr-x.def.json │ ├── creality_cr10.def.json │ ├── creality_cr100.def.json │ ├── creality_cr10max.def.json │ ├── creality_cr10mini.def.json │ ├── creality_cr10s.def.json │ ├── creality_cr10s4.def.json │ ├── creality_cr10s5.def.json │ ├── creality_cr10smart.def.json │ ├── creality_cr10spro.def.json │ ├── creality_cr20.def.json │ ├── creality_cr20pro.def.json │ ├── creality_cr6se.def.json │ ├── creality_crm4.def.json │ ├── creality_ender2.def.json │ ├── creality_ender3.def.json │ ├── creality_ender3max.def.json │ ├── creality_ender3pro.def.json │ ├── creality_ender3s1.def.json │ ├── creality_ender3s1plus.def.json │ ├── creality_ender3s1pro.def.json │ ├── creality_ender3v2neo.def.json │ ├── creality_ender3v3ke.def.json │ ├── creality_ender3v3se.def.json │ ├── creality_ender4.def.json │ ├── creality_ender5.def.json │ ├── creality_ender5plus.def.json │ ├── creality_ender5s1.def.json │ ├── creality_ender6.def.json │ ├── creality_k1max.def.json │ ├── creality_sermoond1.def.json │ ├── creality_sermoonv1.def.json │ ├── creasee_cs20.def.json │ ├── creasee_cs30.def.json │ ├── creasee_cs50spro.def.json │ ├── creasee_phoenix.def.json │ ├── creasee_skywalker.def.json │ ├── creatable_d3.def.json │ ├── cremaker_common.def.json │ ├── cremaker_m_v1.def.json │ ├── cremaker_m_v2.def.json │ ├── cremaker_s_v1.def.json │ ├── cubicon_3dp_110f.def.json │ ├── cubicon_3dp_210f.def.json │ ├── cubicon_3dp_310f.def.json │ ├── cubicon_common.def.json │ ├── cubicon_dual_pro_a30.def.json │ ├── cubicon_style_neo_a22.def.json │ ├── cubicon_style_neo_a31.def.json │ ├── cubicon_style_plus_a15.def.json │ ├── custom.def.json │ ├── dagoma_delta.def.json │ ├── dagoma_disco.def.json │ ├── dagoma_discoeasy200.def.json │ ├── dagoma_discoeasy200_bicolor.def.json │ ├── dagoma_discoultimate.def.json │ ├── dagoma_discoultimate_bicolor.def.json │ ├── dagoma_magis.def.json │ ├── dagoma_neva.def.json │ ├── dagoma_pro_430_base.def.json │ ├── dagoma_pro_430_bowden.def.json │ ├── dagoma_pro_430_directdrive.def.json │ ├── dagoma_pro_430_dual.def.json │ ├── dagoma_sigma.def.json │ ├── dagoma_sigma_pro.def.json │ ├── dagoma_sigma_pro_dual.def.json │ ├── delta_go.def.json │ ├── deltabot.def.json │ ├── deltacomb_base.def.json │ ├── deltacomb_dc20.def.json │ ├── deltacomb_dc20dual.def.json │ ├── deltacomb_dc20flux.def.json │ ├── deltacomb_dc21.def.json │ ├── deltacomb_dc21dual.def.json │ ├── deltacomb_dc21flux.def.json │ ├── deltacomb_dc30.def.json │ ├── deltacomb_dc30dual.def.json │ ├── deltacomb_dc30flux.def.json │ ├── diy220.def.json │ ├── dxu.def.json │ ├── dxu_dual.def.json │ ├── dxu_umo.def.json │ ├── dxu_umo_dual.def.json │ ├── easyarts_ares.def.json │ ├── eazao_m500.def.json │ ├── eazao_m600.def.json │ ├── eazao_m700.def.json │ ├── eazao_potter.def.json │ ├── eazao_zero.def.json │ ├── elegoo_base.def.json │ ├── elegoo_neptune_1.def.json │ ├── elegoo_neptune_2.def.json │ ├── elegoo_neptune_2D.def.json │ ├── elegoo_neptune_2s.def.json │ ├── elegoo_neptune_3.def.json │ ├── elegoo_neptune_3max.def.json │ ├── elegoo_neptune_3plus.def.json │ ├── elegoo_neptune_3pro.def.json │ ├── elegoo_neptune_4.def.json │ ├── elegoo_neptune_4max.def.json │ ├── elegoo_neptune_4plus.def.json │ ├── elegoo_neptune_4pro.def.json │ ├── elegoo_neptune_x.def.json │ ├── entina_tina2.def.json │ ├── entina_tina2s.def.json │ ├── eryone_er20.def.json │ ├── eryone_thinker.def.json │ ├── eryone_thinker_direct.def.json │ ├── erzay3d.def.json │ ├── fablabbcn_pasteprinter.def.json │ ├── fabtotum.def.json │ ├── fabxpro.def.json │ ├── farm2.def.json │ ├── farm2_ce.def.json │ ├── fdmextruder.def.json │ ├── fdmprinter.def.json │ ├── felixpro2dual.def.json │ ├── felixtec4dual.def.json │ ├── flashforge_adventurer3.def.json │ ├── flashforge_adventurer3c.def.json │ ├── flashforge_adventurer4.def.json │ ├── flashforge_adventurer4lite.def.json │ ├── flashforge_adventurer_base.def.json │ ├── flashforge_base.def.json │ ├── flashforge_dreamer_nx.def.json │ ├── flsun_q5.def.json │ ├── flsun_qq.def.json │ ├── flsun_qq_s.def.json │ ├── flsun_sr.def.json │ ├── flsun_v400.def.json │ ├── flyingbear_base.def.json │ ├── flyingbear_ghost_4s.def.json │ ├── flyingbear_ghost_5.def.json │ ├── flyingbear_ghost_6.def.json │ ├── folgertech_FT-5.def.json │ ├── fusedform_300.def.json │ ├── fusedform_300_doppia.def.json │ ├── fusedform_600.def.json │ ├── fusedform_600_doppia.def.json │ ├── fusedform_600plus.def.json │ ├── fusedform_600plus_doppia.def.json │ ├── fusedform_base.def.json │ ├── fusedform_doppia_base.def.json │ ├── fusedform_mini.def.json │ ├── fusedform_std.def.json │ ├── fusedform_std_doppia.def.json │ ├── fusion3.def.json │ ├── fusion3_f410.def.json │ ├── geeetech_A10.def.json │ ├── geeetech_A10M.def.json │ ├── geeetech_A10Pro.def.json │ ├── geeetech_A10T.def.json │ ├── geeetech_A20.def.json │ ├── geeetech_A20M.def.json │ ├── geeetech_A20T.def.json │ ├── geeetech_A30M.def.json │ ├── geeetech_A30Pro.def.json │ ├── geeetech_A30T.def.json │ ├── geeetech_E180.def.json │ ├── geeetech_GiantArmD200.def.json │ ├── geeetech_I3ProB.def.json │ ├── geeetech_I3ProC.def.json │ ├── geeetech_I3ProW.def.json │ ├── geeetech_M1.def.json │ ├── geeetech_M1S.def.json │ ├── geeetech_MeCreator.def.json │ ├── geeetech_MeCreator2.def.json │ ├── geeetech_MeDucer.def.json │ ├── geeetech_Mizar.def.json │ ├── geeetech_MizarM.def.json │ ├── geeetech_MizarMax.def.json │ ├── geeetech_MizarPro.def.json │ ├── geeetech_MizarS.def.json │ ├── geeetech_Mizar_S.def.json │ ├── geeetech_Thunder.def.json │ ├── geeetech_a30.def.json │ ├── gmax15plus.def.json │ ├── gmax15plus_dual.def.json │ ├── goofoo_base.def.json │ ├── goofoo_cube.def.json │ ├── goofoo_e-one.def.json │ ├── goofoo_far.def.json │ ├── goofoo_gemini.def.json │ ├── goofoo_giant.def.json │ ├── goofoo_max.def.json │ ├── goofoo_mido.def.json │ ├── goofoo_miniplus.def.json │ ├── goofoo_near.def.json │ ├── goofoo_nova.def.json │ ├── goofoo_open.def.json │ ├── goofoo_plus.def.json │ ├── goofoo_small.def.json │ ├── goofoo_t-one.def.json │ ├── goofoo_tiny.def.json │ ├── goofoo_tinyplus.def.json │ ├── grr_neo.def.json │ ├── gutenberg_base.def.json │ ├── gutenberg_gzero.def.json │ ├── hardprint_hozo.def.json │ ├── hardprint_hozo_ix.def.json │ ├── hctech_hc300-m1&m1h.def.json │ ├── hctech_hc300-m2h.def.json │ ├── hctech_hc300-m3.def.json │ ├── hellbot_adonis.def.json │ ├── hellbot_hidra.def.json │ ├── hellbot_hidra_plus.def.json │ ├── hellbot_magna_2_230.def.json │ ├── hellbot_magna_2_230_dual.def.json │ ├── hellbot_magna_2_300.def.json │ ├── hellbot_magna_2_300_dual.def.json │ ├── hellbot_magna_2_400.def.json │ ├── hellbot_magna_2_400_dual.def.json │ ├── hellbot_magna_2_500.def.json │ ├── hellbot_magna_2_500_dual.def.json │ ├── hellbot_magna_I.def.json │ ├── hellbot_magna_SE.def.json │ ├── hellbot_magna_SE_300.def.json │ ├── hellbot_magna_SE_Pro.def.json │ ├── hellbot_magna_dual.def.json │ ├── helloBEEprusa.def.json │ ├── hms434.def.json │ ├── ideagen3D_sapphire_plus.def.json │ ├── imade3d_jellybox.def.json │ ├── imade3d_jellybox_2.def.json │ ├── imade3d_jellybox_root.def.json │ ├── inat_base.def.json │ ├── inat_proton_x_rail.def.json │ ├── inat_proton_x_rod.def.json │ ├── innovo_inventor.def.json │ ├── jgaurora_a1.def.json │ ├── jgaurora_a3s.def.json │ ├── jgaurora_a5.def.json │ ├── jgaurora_a6.def.json │ ├── jgaurora_jgmaker_magic.def.json │ ├── jgaurora_z_603s.def.json │ ├── julia.def.json │ ├── kemiq_q2_beta.def.json │ ├── kemiq_q2_gama.def.json │ ├── key3d_tyro.def.json │ ├── kingroon_base.def.json │ ├── kingroon_kp3.def.json │ ├── kingroon_kp3s.def.json │ ├── kingroon_kp3s_pro.def.json │ ├── klema_180.def.json │ ├── klema_250.def.json │ ├── klema_250_pro.def.json │ ├── klema_250_twin.def.json │ ├── klema_500.def.json │ ├── koonovo_base.def.json │ ├── koonovo_elf.def.json │ ├── koonovo_kn3.def.json │ ├── koonovo_kn5.def.json │ ├── koonovo_pyramid.def.json │ ├── kosher.def.json │ ├── kosher_duplication.def.json │ ├── kosher_mirror.def.json │ ├── kossel_mini.def.json │ ├── kossel_pro.def.json │ ├── kupido.def.json │ ├── leapfrog_bolt_pro.def.json │ ├── leapfrog_creatr_hs.def.json │ ├── leapfrog_creatr_hs_xl.def.json │ ├── liquid.def.json │ ├── lnl3d_base.def.json │ ├── lnl3d_d3.def.json │ ├── lnl3d_d3_vulcan.def.json │ ├── lnl3d_d5.def.json │ ├── lnl3d_d6.def.json │ ├── longer_base.def.json │ ├── longer_cube2.def.json │ ├── longer_lk1.def.json │ ├── longer_lk1plus.def.json │ ├── longer_lk1pro.def.json │ ├── longer_lk4.def.json │ ├── longer_lk4pro.def.json │ ├── longer_lk4x.def.json │ ├── longer_lk5.def.json │ ├── longer_lk5pro.def.json │ ├── lotmaxx_sc10.def.json │ ├── lotmaxx_sc20.def.json │ ├── lotmaxx_sc60.def.json │ ├── lulzbot_mini_2_common.def.json │ ├── lulzbot_mini_2_se.def.json │ ├── lulzbot_mini_2_sl.def.json │ ├── lulzbot_taz_pro_common.def.json │ ├── lulzbot_taz_pro_dual.def.json │ ├── makeR_pegasus.def.json │ ├── makeR_prusa_tairona_i3.def.json │ ├── makeblock_mcreate.def.json │ ├── makeit_pro_l.def.json │ ├── makeit_pro_m.def.json │ ├── makeit_pro_mx.def.json │ ├── maker_made_300x.def.json │ ├── maker_starter.def.json │ ├── makerbotreplicator.def.json │ ├── makergear_m2.def.json │ ├── malyan_m180.def.json │ ├── malyan_m200.def.json │ ├── mankati_fullscale_xt_plus.def.json │ ├── matterhackers_pulsexe_e444m.def.json │ ├── mbot3d_grid2plus.def.json │ ├── mbot3d_grid2plus_dual.def.json │ ├── mbot3d_grid4.def.json │ ├── mbot3d_grid4_dual.def.json │ ├── mendel90.def.json │ ├── mingda_1000pro.def.json │ ├── mingda_4h.def.json │ ├── mingda_600pro.def.json │ ├── mingda_6h.def.json │ ├── mingda_base.def.json │ ├── mingda_d2.def.json │ ├── mingda_d3pro.def.json │ ├── mingda_d4pro.def.json │ ├── mingda_magician_max.def.json │ ├── mingda_magician_pro.def.json │ ├── mingda_magician_x.def.json │ ├── mingda_rock3.def.json │ ├── mixware_hyper_k.def.json │ ├── mixware_hyper_s.def.json │ ├── mixware_vulcan.def.json │ ├── mixware_wand.def.json │ ├── modix_v3_base.def.json │ ├── modix_v3_big120X.def.json │ ├── modix_v3_big120Z.def.json │ ├── modix_v3_big180X.def.json │ ├── modix_v3_big40.def.json │ ├── modix_v3_big60.def.json │ ├── modix_v3_big_meter.def.json │ ├── modix_v4_base.def.json │ ├── modix_v4_big120X.def.json │ ├── modix_v4_big120Z.def.json │ ├── modix_v4_big180X.def.json │ ├── modix_v4_big60.def.json │ ├── modix_v4_big_meter.def.json │ ├── monoprice_select_mini_v1.def.json │ ├── monoprice_select_mini_v2.def.json │ ├── monoprice_ultimate.def.json │ ├── mp_mini_delta.def.json │ ├── mp_mini_delta_v2.def.json │ ├── multicomp_mcpi200.def.json │ ├── nps.def.json │ ├── nwa3d_a31.def.json │ ├── nwa3d_a5.def.json │ ├── ord.def.json │ ├── pbr3d_g1.def.json │ ├── peopoly_moai.def.json │ ├── predator.def.json │ ├── printrbot_play.def.json │ ├── printrbot_play_heated.def.json │ ├── printrbot_simple.def.json │ ├── printrbot_simple_extended.def.json │ ├── printrbot_simple_makers_kit.def.json │ ├── prusa_i3.def.json │ ├── prusa_i3_mk2.def.json │ ├── prusa_i3_mk3.def.json │ ├── prusa_i3_xl.def.json │ ├── punchtec_connect_xl.def.json │ ├── raise3D_N2_dual.def.json │ ├── raise3D_N2_plus_dual.def.json │ ├── raise3D_N2_plus_single.def.json │ ├── raise3D_N2_single.def.json │ ├── ratrig_base.def.json │ ├── ratrig_vcore3_200.def.json │ ├── ratrig_vcore3_300.def.json │ ├── ratrig_vcore3_400.def.json │ ├── ratrig_vcore3_500.def.json │ ├── ratrig_vcore3_base.def.json │ ├── ratrig_vminion.def.json │ ├── renkforce_basic3.def.json │ ├── renkforce_cubeone.def.json │ ├── renkforce_pro10plus.def.json │ ├── renkforce_pro3.def.json │ ├── renkforce_pro6.def.json │ ├── renkforce_pro6plus.def.json │ ├── renkforce_pro7dual.def.json │ ├── renkforce_rf100.def.json │ ├── renkforce_rf100_v2.def.json │ ├── renkforce_rf100_xl.def.json │ ├── rigid3d.def.json │ ├── rigid3d_3rdgen.def.json │ ├── rigid3d_base.def.json │ ├── rigid3d_hobby.def.json │ ├── rigid3d_mucit.def.json │ ├── rigid3d_mucit2.def.json │ ├── rigid3d_zero.def.json │ ├── rigid3d_zero2.def.json │ ├── rigid3d_zero3.def.json │ ├── rigidbot.def.json │ ├── rigidbot_big.def.json │ ├── robo_3d_r1.def.json │ ├── seckit_skgo.def.json │ ├── seckit_sktank.def.json │ ├── seemecnc_artemis.def.json │ ├── seemecnc_v32.def.json │ ├── sh65.def.json │ ├── skriware_2.def.json │ ├── smoothie.def.json │ ├── snakeoil_standard_180.def.json │ ├── snakeoil_standard_250.def.json │ ├── snakeoil_standard_base.def.json │ ├── snapmaker2.def.json │ ├── snapmaker2_A150.def.json │ ├── snapmaker2_A150_dual.def.json │ ├── snapmaker2_A250.def.json │ ├── snapmaker2_A250_dual.def.json │ ├── snapmaker2_A350.def.json │ ├── snapmaker2_A350_dual.def.json │ ├── snapmaker2_dual.def.json │ ├── sovol_base.def.json │ ├── sovol_base_bowden.def.json │ ├── sovol_base_planetary.def.json │ ├── sovol_base_titan.def.json │ ├── sovol_sv01.def.json │ ├── sovol_sv01pro.def.json │ ├── sovol_sv03.def.json │ ├── sovol_sv04_copy_mode.def.json │ ├── sovol_sv04_dual_mode.def.json │ ├── sovol_sv04_mirror_mode.def.json │ ├── sovol_sv04_single_mode_1.def.json │ ├── sovol_sv04_single_mode_2.def.json │ ├── sovol_sv05.def.json │ ├── sovol_sv06.def.json │ ├── sovol_sv06_plus.def.json │ ├── sovol_sv08.def.json │ ├── stereotech_start.def.json │ ├── stereotech_ste320.def.json │ ├── strateo3d.def.json │ ├── strateo3d_IDEX420.def.json │ ├── strateo3d_IDEX420_duplicate.def.json │ ├── strateo3d_IDEX420_mirror.def.json │ ├── stream20dual_mk2.def.json │ ├── stream20pro_mk2.def.json │ ├── stream30dual_mk2.def.json │ ├── stream30mk3.def.json │ ├── stream30pro_mk2.def.json │ ├── stream30ultra.def.json │ ├── stream30ultrasc.def.json │ ├── stream30ultrasc2.def.json │ ├── structur3d_discov3ry1_complete_um2plus.def.json │ ├── syndaveraxi.def.json │ ├── syndaveraxi2.def.json │ ├── tam.def.json │ ├── tank_m3.def.json │ ├── tank_m3_max.def.json │ ├── tank_m_base.def.json │ ├── tevo_blackwidow.def.json │ ├── tevo_tarantula.def.json │ ├── tevo_tarantula_pro.def.json │ ├── tevo_tornado.def.json │ ├── tinyboy_e10.def.json │ ├── tinyboy_e16.def.json │ ├── tinyboy_fabrikator15.def.json │ ├── tinyboy_ra20.def.json │ ├── tizyx_evy.def.json │ ├── tizyx_evy_dual.def.json │ ├── tizyx_k25.def.json │ ├── toybox_alpha_one_two.def.json │ ├── trimaker_cosmosII.def.json │ ├── trimaker_nebula.def.json │ ├── trimaker_nebula_plus.def.json │ ├── tronxy_d01.def.json │ ├── tronxy_x.def.json │ ├── tronxy_x5sa.def.json │ ├── tronxy_x5sa_400.def.json │ ├── tronxy_x5sa_500.def.json │ ├── tronxy_xy2.def.json │ ├── tronxy_xy2pro.def.json │ ├── tronxy_xy3.def.json │ ├── tronxy_xy3proV2.def.json │ ├── two_trees_base.def.json │ ├── two_trees_bluer.def.json │ ├── two_trees_bluerplus.def.json │ ├── two_trees_sapphireplus.def.json │ ├── two_trees_sapphirepro.def.json │ ├── ubuild-3d_mr_bot_280.def.json │ ├── ultimaker.def.json │ ├── ultimaker2.def.json │ ├── ultimaker2_extended.def.json │ ├── ultimaker2_extended_olsson.def.json │ ├── ultimaker2_extended_plus.def.json │ ├── ultimaker2_go.def.json │ ├── ultimaker2_olsson.def.json │ ├── ultimaker2_plus.def.json │ ├── ultimaker2_plus_connect.def.json │ ├── ultimaker3.def.json │ ├── ultimaker3_extended.def.json │ ├── ultimaker_factor4.def.json │ ├── ultimaker_method.def.json │ ├── ultimaker_method_base.def.json │ ├── ultimaker_methodx.def.json │ ├── ultimaker_methodxl.def.json │ ├── ultimaker_original.def.json │ ├── ultimaker_original_dual.def.json │ ├── ultimaker_original_plus.def.json │ ├── ultimaker_replicator_plus.def.json │ ├── ultimaker_s3.def.json │ ├── ultimaker_s5.def.json │ ├── ultimaker_s6.def.json │ ├── ultimaker_s7.def.json │ ├── ultimaker_s8.def.json │ ├── ultimaker_sketch.def.json │ ├── ultimaker_sketch_large.def.json │ ├── ultimaker_sketch_sprint.def.json │ ├── uni_200.def.json │ ├── uni_250.def.json │ ├── uni_300.def.json │ ├── uni_base.def.json │ ├── uni_mini.def.json │ ├── uni_print_3d.def.json │ ├── uniqbot_one.def.json │ ├── vertex_delta_k8800.def.json │ ├── vertex_k8400.def.json │ ├── vertex_k8400_dual.def.json │ ├── vertex_nano_k8600.def.json │ ├── vivedino_base.def.json │ ├── vivedino_trex2plus.def.json │ ├── vivedino_trex3.def.json │ ├── voron0_120.def.json │ ├── voron2_250.def.json │ ├── voron2_300.def.json │ ├── voron2_350.def.json │ ├── voron2_base.def.json │ ├── voron2_custom.def.json │ ├── voron2_stealthchanger_250.def.json │ ├── voron2_stealthchanger_300.def.json │ ├── voron2_stealthchanger_350.def.json │ ├── voron2_stealthchanger_base.def.json │ ├── voron_trident_250.def.json │ ├── voron_trident_300.def.json │ ├── voron_trident_350.def.json │ ├── voron_trident_base.def.json │ ├── vzbot_235.def.json │ ├── vzbot_330.def.json │ ├── vzbot_base.def.json │ ├── vzbot_custom.def.json │ ├── wanhao_d4s.def.json │ ├── wanhao_d6.def.json │ ├── wanhao_d6_plus.def.json │ ├── wanhao_d9.def.json │ ├── wanhao_duplicator5S.def.json │ ├── wanhao_duplicator5Smini.def.json │ ├── wanhao_i3.def.json │ ├── wanhao_i3mini.def.json │ ├── wanhao_i3plus.def.json │ ├── weedo_base.def.json │ ├── weedo_f150s.def.json │ ├── weedo_f152s.def.json │ ├── weedo_f370.def.json │ ├── weedo_me40.def.json │ ├── weedo_me40_lite.def.json │ ├── weedo_tina2.def.json │ ├── weedo_tina2s.def.json │ ├── weedo_x40.def.json │ ├── weedo_x40v3.def.json │ ├── weefun_tina2.def.json │ ├── weefun_tina2s.def.json │ ├── winbo_dragonl4.def.json │ ├── winbo_mini2.def.json │ ├── winbo_superhelper105.def.json │ ├── winbo_superhelper155.def.json │ ├── xyzprinting_base.def.json │ ├── xyzprinting_da_vinci_1p0_pro.def.json │ ├── xyzprinting_da_vinci_jr_1p0a_pro.def.json │ ├── xyzprinting_da_vinci_jr_pro_xeplus.def.json │ ├── xyzprinting_da_vinci_jr_pro_xplus.def.json │ ├── xyzprinting_da_vinci_jr_w_pro.def.json │ ├── xyzprinting_da_vinci_pro_evo.def.json │ ├── xyzprinting_da_vinci_super.def.json │ ├── z-bolt_classic.def.json │ ├── z-bolt_plus.def.json │ ├── zav_base.def.json │ ├── zav_big.def.json │ ├── zav_bigplus.def.json │ ├── zav_l.def.json │ ├── zav_max.def.json │ ├── zav_maxpro.def.json │ ├── zav_mini.def.json │ ├── zone3d_printer.def.json │ ├── zyyx_plus.def.json │ └── zyyx_pro.def.json ├── extruders │ ├── 101Hero_extruder_0.def.json │ ├── 3dator_extruder_0.def.json │ ├── 3di_base_extruder_0.def.json │ ├── 3dtech_semi_professional_extruder_0.def.json │ ├── Geeetech_Dual_Extruder_0.def.json │ ├── Geeetech_Dual_Extruder_1.def.json │ ├── Geeetech_Multi_Extruder_0.def.json │ ├── Geeetech_Multi_Extruder_1.def.json │ ├── Geeetech_Multi_Extruder_2.def.json │ ├── Geeetech_Single_Extruder.def.json │ ├── I3MetalMotion_extruder_0.def.json │ ├── Mark2_extruder1.def.json │ ├── Mark2_extruder2.def.json │ ├── SV01_extruder_0.def.json │ ├── SV02_extruder_0.def.json │ ├── SV02_extruder_1.def.json │ ├── SV03_extruder_0.def.json │ ├── abax_pri3_extruder_0.def.json │ ├── abax_pri5_extruder_0.def.json │ ├── abax_titan_extruder_0.def.json │ ├── alfawise_u20_extruder_0.def.json │ ├── alfawise_u30_extruder_0.def.json │ ├── alya3dp_extruder_0.def.json │ ├── anet3d_extruder_0.def.json │ ├── ankermake_m5_extruder_0.def.json │ ├── ankermake_m5c_extruder_0.def.json │ ├── anycubic_4max_extruder_0.def.json │ ├── anycubic_chiron_extruder_0.def.json │ ├── anycubic_i3_mega_extruder_0.def.json │ ├── anycubic_i3_mega_s_extruder_0.def.json │ ├── anycubic_kobra2_extruder_0.def.json │ ├── anycubic_kobra3v2_ACEPRO_extruder_0.def.json │ ├── anycubic_kobra3v2_ACEPRO_extruder_1.def.json │ ├── anycubic_kobra3v2_ACEPRO_extruder_2.def.json │ ├── anycubic_kobra3v2_ACEPRO_extruder_3.def.json │ ├── anycubic_kobra3v2_extruder_0.def.json │ ├── anycubic_kobra_extruder_0.def.json │ ├── anycubic_kobra_go_extruder_0.def.json │ ├── anycubic_kobra_max_extruder_0.def.json │ ├── anycubic_kobra_plus_extruder_0.def.json │ ├── anycubic_kobra_s1_extruder_0.def.json │ ├── anycubic_kossel_extruder_0.def.json │ ├── anycubic_mega_zero_extruder_0.def.json │ ├── anycubic_vyper_extruder_0.def.json │ ├── arjun_dm_extruder.def.json │ ├── arjun_extruder_0.def.json │ ├── arjun_extruder_1.def.json │ ├── arjun_mm_extruder.def.json │ ├── arjunpro_dm_extruder.def.json │ ├── arjunpro_extruder_0.def.json │ ├── arjunpro_extruder_1.def.json │ ├── arjunpro_mm_extruder.def.json │ ├── artillery_base_extruder_0.def.json │ ├── atmat_signal_pro_extruder_left.def.json │ ├── atmat_signal_pro_extruder_right.def.json │ ├── atom2_extruder_0.def.json │ ├── atom3_extruder_0.def.json │ ├── atomstack_cambrianmaxe175_extruder_0.def.json │ ├── atomstack_cambrianmaxe285_extruder_0.def.json │ ├── atomstack_cambrianproe175_extruder_0.def.json │ ├── atomstack_cambrianproe285_extruder_0.def.json │ ├── beamup_l_extruder_0.def.json │ ├── beamup_s_extruder_0.def.json │ ├── bfb_extruder_0.def.json │ ├── bibo2_dual_extruder_0.def.json │ ├── bibo2_dual_extruder_1.def.json │ ├── biqu_b2_extruder_0.def.json │ ├── biqu_b2_extruder_1.def.json │ ├── biqu_base_extruder_0.def.json │ ├── blocks_mkii_extruder_0.def.json │ ├── blocks_one_extruder_0.def.json │ ├── blocks_pros100_extruder_0.def.json │ ├── blocks_pros30_extruder_0.def.json │ ├── blocks_r21_extruder_0.def.json │ ├── blocks_rd50_extruder_0.def.json │ ├── blocks_rd50_extruder_1.def.json │ ├── blocks_zero_extruder_0.def.json │ ├── blv_mgn_cube_extruder_0.def.json │ ├── bq_hephestos_2_extruder_0.def.json │ ├── bq_hephestos_extruder_0.def.json │ ├── bq_hephestos_xl_extruder_0.def.json │ ├── bq_witbox_2_extruder_0.def.json │ ├── bq_witbox_extruder_0.def.json │ ├── builder_premium_large_front.def.json │ ├── builder_premium_large_rear.def.json │ ├── builder_premium_medium_front.def.json │ ├── builder_premium_medium_rear.def.json │ ├── builder_premium_small_front.def.json │ ├── builder_premium_small_rear.def.json │ ├── cartesio_extruder_0.def.json │ ├── cartesio_extruder_1.def.json │ ├── cartesio_extruder_2.def.json │ ├── cartesio_extruder_3.def.json │ ├── cocoon_create_extruder_0.def.json │ ├── cocoon_create_modelmaker_extruder_0.def.json │ ├── cocoon_create_touch_extruder_0.def.json │ ├── cr-x_extruder_0.def.json │ ├── cr-x_extruder_1.def.json │ ├── crazy3dprint_cz300_extruder_0.def.json │ ├── creality_base_extruder_0.def.json │ ├── creality_k1max_extruder_0.def.json │ ├── creasee_cs50spro_extruder.def.json │ ├── creasee_extruder_0.def.json │ ├── creasee_extruder_1.def.json │ ├── creasee_phoenix_extruder.def.json │ ├── creasee_skywalker_extruder.def.json │ ├── creatable_d3_extruder_0.def.json │ ├── cremaker_extruder_0.def.json │ ├── cubicon_3dp_110f_extruder_0.def.json │ ├── cubicon_3dp_210f_extruder_0.def.json │ ├── cubicon_3dp_310f_extruder_0.def.json │ ├── cubicon_dual_pro_a30_extruder_0.def.json │ ├── cubicon_dual_pro_a30_extruder_1.def.json │ ├── cubicon_style_neo_a22_extruder_0.def.json │ ├── cubicon_style_neo_a31_extruder_0.def.json │ ├── cubicon_style_plus_a15_extruder_0.def.json │ ├── custom_extruder_1.def.json │ ├── custom_extruder_2.def.json │ ├── custom_extruder_3.def.json │ ├── custom_extruder_4.def.json │ ├── custom_extruder_5.def.json │ ├── custom_extruder_6.def.json │ ├── custom_extruder_7.def.json │ ├── custom_extruder_8.def.json │ ├── dagoma_discoeasy200_extruder.def.json │ ├── dagoma_discoeasy200_extruder_0.def.json │ ├── dagoma_discoeasy200_extruder_1.def.json │ ├── dagoma_discoultimate_extruder.def.json │ ├── dagoma_discoultimate_extruder_0.def.json │ ├── dagoma_discoultimate_extruder_1.def.json │ ├── dagoma_magis_extruder.def.json │ ├── dagoma_neva_extruder.def.json │ ├── dagoma_pro_430_bowden_extruder.def.json │ ├── dagoma_pro_430_directdrive_extruder.def.json │ ├── dagoma_pro_430_dual_extruder_left.def.json │ ├── dagoma_pro_430_dual_extruder_right.def.json │ ├── dagoma_sigma_extruder.def.json │ ├── dagoma_sigma_pro_dual_extruder_left.def.json │ ├── dagoma_sigma_pro_dual_extruder_right.def.json │ ├── dagoma_sigma_pro_extruder.def.json │ ├── delta_go_extruder_0.def.json │ ├── deltabot_extruder_0.def.json │ ├── deltacomb_base_extruder_0.def.json │ ├── deltacomb_base_extruder_1.def.json │ ├── deltacomb_base_extruder_2.def.json │ ├── deltacomb_base_extruder_3.def.json │ ├── deltacomb_dc20dual_extruder_0.def.json │ ├── deltacomb_dc20dual_extruder_1.def.json │ ├── deltacomb_dc20flux_extruder_0.def.json │ ├── deltacomb_dc20flux_extruder_1.def.json │ ├── deltacomb_dc20flux_extruder_2.def.json │ ├── deltacomb_dc20flux_extruder_3.def.json │ ├── deltacomb_dc30dual_extruder_0.def.json │ ├── deltacomb_dc30dual_extruder_1.def.json │ ├── deltacomb_dc30flux_extruder_0.def.json │ ├── deltacomb_dc30flux_extruder_1.def.json │ ├── deltacomb_dc30flux_extruder_2.def.json │ ├── deltacomb_dc30flux_extruder_3.def.json │ ├── diy220_extruder_0.def.json │ ├── dxu_extruder1.def.json │ ├── dxu_extruder2.def.json │ ├── easyarts_ares_extruder_0.def.json │ ├── eazao_m500_extruder_0.def.json │ ├── eazao_m600_extruder_0.def.json │ ├── eazao_m700_extruder_0.def.json │ ├── eazao_potter_extruder_0.def.json │ ├── eazao_zero_extruder_0.def.json │ ├── elegoo_extruder_0.def.json │ ├── elegoo_neptune2D_extruder_0.def.json │ ├── elegoo_neptune2D_extruder_1.def.json │ ├── elegoo_neptune2_extruder_0.def.json │ ├── eryone_er20_extruder_0.def.json │ ├── eryone_thinker_extruder_0.def.json │ ├── erzay3d_extruder_0.def.json │ ├── fablabbcn_0.def.json │ ├── fabtotum_extruder_0.def.json │ ├── fabxpro_extruder_0.def.json │ ├── farm2_ce_extruder_1.def.json │ ├── farm2_extruder_1.def.json │ ├── felixpro2_dual_extruder_0.def.json │ ├── felixpro2_dual_extruder_1.def.json │ ├── felixtec4_dual_extruder_0.def.json │ ├── felixtec4_dual_extruder_1.def.json │ ├── flashforge_adventurer_extruder_0.def.json │ ├── flashforge_dreamernx_extruder_0.def.json │ ├── flsun_q5_extruder.def.json │ ├── flsun_qq_extruder.def.json │ ├── flsun_qq_s_extruder_0.def.json │ ├── flsun_sr_extruder_0.def.json │ ├── flsun_v400_extruder_0.def.json │ ├── flyingbear_base_extruder_0.def.json │ ├── folgertech_FT-5_extruder_0.def.json │ ├── fusedform_base_extruder_0.def.json │ ├── fusedform_doppia_base_extruder_0.def.json │ ├── fusedform_doppia_base_extruder_1.def.json │ ├── fusion3_extruder_0.def.json │ ├── geeetech_A10M_1.def.json │ ├── geeetech_A10M_2.def.json │ ├── geeetech_A10T_1.def.json │ ├── geeetech_A10T_2.def.json │ ├── geeetech_A10T_3.def.json │ ├── geeetech_A10_1.def.json │ ├── geeetech_A20M_1.def.json │ ├── geeetech_A20M_2.def.json │ ├── geeetech_A20T_1.def.json │ ├── geeetech_A20T_2.def.json │ ├── geeetech_A20T_3.def.json │ ├── geeetech_A20_1.def.json │ ├── geeetech_Mizar_S_1.def.json │ ├── geeetech_a30_extruder_0.def.json │ ├── gmax15plus_dual_extruder_0.def.json │ ├── gmax15plus_dual_extruder_1.def.json │ ├── gmax15plus_extruder_0.def.json │ ├── goofoo_base_extruder.def.json │ ├── goofoo_gemini_1st.def.json │ ├── goofoo_gemini_2st.def.json │ ├── goofoo_tone_1st.def.json │ ├── goofoo_tone_2st.def.json │ ├── grr_neo_extruder_0.def.json │ ├── gutenberg_extruder_0.def.json │ ├── hBp_extruder_left.def.json │ ├── hBp_extruder_right.def.json │ ├── hardprint_hozo_extruder_0.def.json │ ├── hardprint_hozo_ix_extruder_0.def.json │ ├── hctech_hc300-m1&m1h_extruder_0.def.json │ ├── hctech_hc300-m2h_extruder_0.def.json │ ├── hctech_hc300-m2h_extruder_1.def.json │ ├── hctech_hc300-m3_extruder_0.def.json │ ├── hellbot_adonis_extruder.def.json │ ├── hellbot_hidra_extruder_0.def.json │ ├── hellbot_hidra_extruder_1.def.json │ ├── hellbot_hidra_plus_extruder_0.def.json │ ├── hellbot_hidra_plus_extruder_1.def.json │ ├── hellbot_magna_2_230_dual_extruder_0.def.json │ ├── hellbot_magna_2_230_dual_extruder_1.def.json │ ├── hellbot_magna_2_230_extruder_0.def.json │ ├── hellbot_magna_2_300_dual_extruder_0.def.json │ ├── hellbot_magna_2_300_dual_extruder_1.def.json │ ├── hellbot_magna_2_300_extruder_0.def.json │ ├── hellbot_magna_2_400_dual_extruder_0.def.json │ ├── hellbot_magna_2_400_dual_extruder_1.def.json │ ├── hellbot_magna_2_400_extruder_0.def.json │ ├── hellbot_magna_2_500_dual_extruder_0.def.json │ ├── hellbot_magna_2_500_dual_extruder_1.def.json │ ├── hellbot_magna_2_500_extruder_0.def.json │ ├── hellbot_magna_SE_300_extruder.def.json │ ├── hellbot_magna_SE_Pro_extruder.def.json │ ├── hellbot_magna_SE_extruder.def.json │ ├── hellbot_magna_dual_extruder_1.def.json │ ├── hellbot_magna_dual_extruder_2.def.json │ ├── hellbot_magna_i_extruder.def.json │ ├── hms434_tool_1.def.json │ ├── hms434_tool_2.def.json │ ├── hms434_tool_3.def.json │ ├── hms434_tool_4.def.json │ ├── hms434_tool_5.def.json │ ├── hms434_tool_6.def.json │ ├── hms434_tool_7.def.json │ ├── hms434_tool_8.def.json │ ├── ideagen3D_sapphire_plus_0.def.json │ ├── imade3d_jellybox_2_extruder_0.def.json │ ├── imade3d_jellybox_extruder_0.def.json │ ├── inat_extruder_0.def.json │ ├── innovo_inventor_extruder_0.def.json │ ├── jgaurora_a1_extruder_0.def.json │ ├── jgaurora_a3s_extruder_0.def.json │ ├── jgaurora_a5_extruder_0.def.json │ ├── jgaurora_a6_extruder_0.def.json │ ├── jgaurora_jgmaker_magic_extruder_0.def.json │ ├── jgaurora_z_603s_extruder_0.def.json │ ├── julia_extruder_0.def.json │ ├── kemiq_q2_beta_extruder_0.def.json │ ├── kemiq_q2_gama_extruder_0.def.json │ ├── key3d_tyro_extruder_0.def.json │ ├── kingroon_base_extruder_0.def.json │ ├── klema_180_m1_t1_extruder_1.def.json │ ├── klema_250_m1_t1_extruder_1.def.json │ ├── klema_250_pro_m1_t2_extruder_1.def.json │ ├── klema_250_twin_m1_t1_extruder_1.def.json │ ├── klema_250_twin_m1_t1_extruder_2.def.json │ ├── klema_500_m1_t1_extruder_1.def.json │ ├── koonovo_base_extruder_0.def.json │ ├── koonovo_kn3_extruder_0.def.json │ ├── koonovo_kn3_extruder_1.def.json │ ├── koonovo_kn5_extruder_0.def.json │ ├── koonovo_kn5_extruder_1.def.json │ ├── kosher_dm_extruder.def.json │ ├── kosher_extruder_0.def.json │ ├── kosher_extruder_1.def.json │ ├── kosher_mm_extruder.def.json │ ├── kossel_mini_extruder_0.def.json │ ├── kossel_pro_extruder_0.def.json │ ├── kupido_extruder_0.def.json │ ├── leapfrog_bolt_pro_extruder_left.def.json │ ├── leapfrog_bolt_pro_extruder_right.def.json │ ├── leapfrog_creatr_hs_extruder_left.def.json │ ├── leapfrog_creatr_hs_extruder_right.def.json │ ├── leapfrog_creatr_hs_xl_extruder_left.def.json │ ├── leapfrog_creatr_hs_xl_extruder_right.def.json │ ├── liquid_extruder.def.json │ ├── lnl3d_extruder_left.def.json │ ├── lnl3d_extruder_right.def.json │ ├── longer_base_extruder_0.def.json │ ├── lotmaxx_sc10_extruder_0.def.json │ ├── lotmaxx_sc20_extruder_0.def.json │ ├── lotmaxx_sc60_extruder_left.def.json │ ├── lotmaxx_sc60_extruder_right.def.json │ ├── lulzbot_mini_2_se_extruder.def.json │ ├── lulzbot_mini_2_sl_extruder.def.json │ ├── lulzbot_taz_pro_dual_extruder_0.def.json │ ├── lulzbot_taz_pro_dual_extruder_1.def.json │ ├── makeR_pegasus_extruder_0.def.json │ ├── makeR_prusa_tairona_i3_extruder_0.def.json │ ├── makeblock_mcreate_extruder_0.def.json │ ├── makeit_dual_1st.def.json │ ├── makeit_dual_2nd.def.json │ ├── makeit_l_dual_1st.def.json │ ├── makeit_l_dual_2nd.def.json │ ├── makeit_mx_dual_1st.def.json │ ├── makeit_mx_dual_2nd.def.json │ ├── maker_made_300x_extruder_0.def.json │ ├── maker_starter_extruder_0.def.json │ ├── makerbotreplicator_extruder_0.def.json │ ├── makergear_m2_v3b.def.json │ ├── malyan_m180_extruder_0.def.json │ ├── malyan_m200_extruder_0.def.json │ ├── mankati_fullscale_xt_plus_extruder_0.def.json │ ├── matterhackers_extruder.def.json │ ├── mbot3d_grid2_extruder_0.def.json │ ├── mbot3d_grid2_extruder_left.def.json │ ├── mbot3d_grid2_extruder_right.def.json │ ├── mbot3d_grid4_extruder_0.def.json │ ├── mbot3d_grid4_extruder_left.def.json │ ├── mbot3d_grid4_extruder_right.def.json │ ├── mendel90_extruder_0.def.json │ ├── mingda_base_extruder_0.def.json │ ├── mixware_hyper_k_extruder_0.def.json │ ├── mixware_hyper_s_extruder_0.def.json │ ├── mixware_vulcan_extruder_0.def.json │ ├── mixware_wand_extruder_0.def.json │ ├── modix_v3_extruder_0.def.json │ ├── modix_v3_extruder_1.def.json │ ├── modix_v4_extruder_0.def.json │ ├── modix_v4_extruder_1.def.json │ ├── monoprice_select_mini_v1_extruder_0.def.json │ ├── monoprice_select_mini_v2_extruder_0.def.json │ ├── mp_mini_delta_extruder_0.def.json │ ├── mp_mini_delta_v2_extruder_0.def.json │ ├── nps_extruder_0.def.json │ ├── nwa3d_a31_extruder_0.def.json │ ├── nwa3d_a5_extruder_0.def.json │ ├── ord_extruder_0.def.json │ ├── ord_extruder_1.def.json │ ├── ord_extruder_2.def.json │ ├── ord_extruder_3.def.json │ ├── ord_extruder_4.def.json │ ├── pbr3d_g1_extruder_0.def.json │ ├── peopoly_moai_extruder_0.def.json │ ├── predator_extruder_0.def.json │ ├── printrbot_play_extruder_0.def.json │ ├── printrbot_play_heated_extruder_0.def.json │ ├── printrbot_simple_extended_extruder_0.def.json │ ├── printrbot_simple_extruder_0.def.json │ ├── printrbot_simple_makers_kit_extruder_0.def.json │ ├── prusa_i3_extruder_0.def.json │ ├── prusa_i3_mk2_extruder_0.def.json │ ├── prusa_i3_mk3_extruder_0.def.json │ ├── prusa_i3_xl_extruder_0.def.json │ ├── punchtec_connect_xl_extruder_0.def.json │ ├── punchtec_connect_xl_extruder_1.def.json │ ├── raise3D_N2_dual_extruder_0.def.json │ ├── raise3D_N2_dual_extruder_1.def.json │ ├── raise3D_N2_plus_dual_extruder_0.def.json │ ├── raise3D_N2_plus_dual_extruder_1.def.json │ ├── raise3D_N2_plus_single_extruder_0.def.json │ ├── raise3D_N2_single_extruder_0.def.json │ ├── ratrig_base_extruder_0.def.json │ ├── renkforce_pro7dual_1st.def.json │ ├── renkforce_pro7dual_2nd.def.json │ ├── renkforce_rf100_extruder_0.def.json │ ├── renkforce_rf100_xl_extruder_0.def.json │ ├── rigid3d_base_extruder_0.def.json │ ├── rigidbot_big_extruder_0.def.json │ ├── rigidbot_extruder_0.def.json │ ├── robo_3d_r1_extruder_0.def.json │ ├── seckit_skgo_extruder_0.def.json │ ├── seckit_sktank_extruder_0.def.json │ ├── seemecnc_artemis_extruder_0.def.json │ ├── seemecnc_v32_extruder_0.def.json │ ├── sh65_extruder.def.json │ ├── skriware_2_extruder_0.def.json │ ├── skriware_2_extruder_1.def.json │ ├── snakeoil_standard_extruder_0.def.json │ ├── snapmaker_dual_extruder_0.def.json │ ├── snapmaker_dual_extruder_1.def.json │ ├── snapmaker_extruder_0.def.json │ ├── sovol_bowden_extruder_0.def.json │ ├── sovol_planetary_extruder_0.def.json │ ├── sovol_sv04_copy_mode_extruder_0.def.json │ ├── sovol_sv04_dual_mode_extruder_0.def.json │ ├── sovol_sv04_dual_mode_extruder_1.def.json │ ├── sovol_sv04_extruder_left.def.json │ ├── sovol_sv04_extruder_right.def.json │ ├── sovol_sv04_mirror_mode_extruder_0.def.json │ ├── sovol_sv08_extruder.def.json │ ├── sovol_titan_extruder_0.def.json │ ├── stereotech_start_extruder_0.def.json │ ├── stereotech_ste320_1st.def.json │ ├── stereotech_ste320_2nd.def.json │ ├── strateo3d_IDEX420_duplicate_left_right.def.json │ ├── strateo3d_IDEX420_left_extruder.def.json │ ├── strateo3d_IDEX420_mirror_left_right.def.json │ ├── strateo3d_IDEX420_right_extruder.def.json │ ├── strateo3d_left_extruder.def.json │ ├── strateo3d_right_extruder.def.json │ ├── stream20_extruder.def.json │ ├── stream20dual_0.def.json │ ├── stream20dual_1.def.json │ ├── stream30_extruder.def.json │ ├── stream30dual_0.def.json │ ├── stream30dual_1.def.json │ ├── stream30mk3_extruder.def.json │ ├── stream30ultra_extruder.def.json │ ├── stream30ultrasc2_extruder.def.json │ ├── stream30ultrasc_extruder.def.json │ ├── structur3d_discov3ry1_complete_um2plus_extruder_0.def.json │ ├── syndaveraxi2_extruder_0.def.json │ ├── syndaveraxi_extruder_0.def.json │ ├── tam_extruder_0.def.json │ ├── tank_m_base_extruder_0.def.json │ ├── tevo_blackwidow_extruder_0.def.json │ ├── tevo_tarantula_extruder_0.def.json │ ├── tevo_tarantula_extruder_1.def.json │ ├── tevo_tarantula_pro_extruder_0.def.json │ ├── tevo_tarantula_pro_extruder_1.def.json │ ├── tevo_tornado_extruder_0.def.json │ ├── tinyboy_extruder_0.def.json │ ├── tinyboy_fabrikator15_extruder_0.def.json │ ├── tizyx_evy_dual_extruder_0.def.JSON │ ├── tizyx_evy_dual_extruder_1.def.JSON │ ├── tizyx_evy_extruder_0.def.JSON │ ├── tizyx_k25_extruder_0.def.json │ ├── toybox_alpha_one_two_extruder_0.def.json │ ├── trex2_extruder_0.def.json │ ├── trex2_extruder_1.def.json │ ├── trex_base_extruder_0.def.json │ ├── trex_extruder_0.def.json │ ├── trex_extruder_1.def.json │ ├── trimaker_cosmosII_extruder.def.json │ ├── trimaker_nebula_extruder.def.json │ ├── tronxy_base_extruder_0.def.json │ ├── tronxy_base_extruder_1.def.json │ ├── two_trees_base_extruder_0.def.json │ ├── ubuild-3d_mr_bot_280_extruder_0.def.json │ ├── ultimaker2_extended_extruder_0.def.json │ ├── ultimaker2_extended_plus_extruder_0.def.json │ ├── ultimaker2_extruder_0.def.json │ ├── ultimaker2_go_extruder_0.def.json │ ├── ultimaker2_plus_connect_extruder_0.def.json │ ├── ultimaker2_plus_extruder_0.def.json │ ├── ultimaker3_extended_extruder_left.def.json │ ├── ultimaker3_extended_extruder_right.def.json │ ├── ultimaker3_extruder_left.def.json │ ├── ultimaker3_extruder_right.def.json │ ├── ultimaker_factor4_extruder_left.def.json │ ├── ultimaker_factor4_extruder_right.def.json │ ├── ultimaker_method_extruder_left.def.json │ ├── ultimaker_method_extruder_right.def.json │ ├── ultimaker_methodx_extruder_left.def.json │ ├── ultimaker_methodx_extruder_right.def.json │ ├── ultimaker_methodxl_extruder_left.def.json │ ├── ultimaker_methodxl_extruder_right.def.json │ ├── ultimaker_original_dual_1st.def.json │ ├── ultimaker_original_dual_2nd.def.json │ ├── ultimaker_original_extruder_0.def.json │ ├── ultimaker_original_plus_extruder_0.def.json │ ├── ultimaker_replicator_extruder.def.json │ ├── ultimaker_s3_extruder_left.def.json │ ├── ultimaker_s3_extruder_right.def.json │ ├── ultimaker_s5_extruder_left.def.json │ ├── ultimaker_s5_extruder_right.def.json │ ├── ultimaker_s6_extruder_left.def.json │ ├── ultimaker_s6_extruder_right.def.json │ ├── ultimaker_s7_extruder_left.def.json │ ├── ultimaker_s7_extruder_right.def.json │ ├── ultimaker_s8_extruder_left.def.json │ ├── ultimaker_s8_extruder_right.def.json │ ├── ultimaker_sketch_extruder.def.json │ ├── ultimaker_sketch_large_extruder.def.json │ ├── ultimaker_sketch_sprint_extruder.def.json │ ├── uni_extruder_1st.def.json │ ├── uni_extruder_2nd.def.json │ ├── uni_print_3d_extruder_0.def.json │ ├── uniqbot_one_extruder_0.def.json │ ├── vertex_delta_k8800_extruder_0.def.json │ ├── vertex_k8400_dual_1st.def.json │ ├── vertex_k8400_dual_2nd.def.json │ ├── vertex_k8400_extruder_0.def.json │ ├── vertex_nano_k8600_extruder_0.def.json │ ├── voron2_extruder_0.def.json │ ├── voron2_stealthchanger_extruder_0.def.json │ ├── voron2_stealthchanger_extruder_1.def.json │ ├── voron2_stealthchanger_extruder_2.def.json │ ├── voron2_stealthchanger_extruder_3.def.json │ ├── voron2_stealthchanger_extruder_4.def.json │ ├── voron2_stealthchanger_extruder_5.def.json │ ├── voron2_stealthchanger_extruder_6.def.json │ ├── voron2_stealthchanger_extruder_7.def.json │ ├── vzbot_extruder_0.def.json │ ├── wanhao_d4s_extruder_0.def.json │ ├── wanhao_d6_extruder_0.def.json │ ├── wanhao_d6_plus_extruder_0.def.json │ ├── wanhao_d9_extruder_0.def.json │ ├── wanhao_duplicator5S_extruder_0.def.json │ ├── wanhao_duplicator5Smini_extruder_0.def.json │ ├── wanhao_i3_extruder_0.def.json │ ├── wanhao_i3mini_extruder_0.def.json │ ├── wanhao_i3plus_extruder_0.def.json │ ├── weedo_base_extruder_0.def.json │ ├── weedo_x40_extruder_left_0.def.json │ ├── weedo_x40_extruder_right_0.def.json │ ├── weedo_x40v3_extruder_left.def.json │ ├── weedo_x40v3_extruder_right.def.json │ ├── winbo_dragonl4_extruder.def.json │ ├── winbo_mini2_extruder.def.json │ ├── winbo_superhelper105_extruder.def.json │ ├── winbo_superhelper155_extruder.def.json │ ├── xyzprinting_base_extruder_0.def.json │ ├── xyzprinting_da_vinci_1p0_pro_extruder_0.def.json │ ├── xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json │ ├── xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json │ ├── xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json │ ├── xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json │ ├── xyzprinting_da_vinci_pro_evo_extruder_0.def.json │ ├── xyzprinting_da_vinci_super_extruder_0.def.json │ ├── z-bolt_extruder_0.def.json │ ├── zav_extruder_1.def.json │ ├── zav_extruder_2.def.json │ ├── zone3d_printer_extruder_0.def.json │ ├── zyyx_plus_extruder_0.def.json │ └── zyyx_pro_extruder.def.json ├── i18n │ ├── README.md │ ├── cs_CZ │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── cura.pot │ ├── de_DE │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── es_ES │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── fdmextruder.def.json.pot │ ├── fdmprinter.def.json.pot │ ├── fi_FI │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── fr_FR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── hu_HU │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── it_IT │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── ja_JP │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── ko_KR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── nl_NL │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── pl_PL │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── pt_BR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── pt_PT │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── ru_RU │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── tr_TR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── zh_CN │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ └── zh_TW │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po ├── images │ ├── Cocoon-backplate.png │ ├── Hellbot_Hidra_and_Hidra_Plus_V2.png │ ├── Hellbot_Magna_SE_300.png │ ├── Hellbot_magna_SE_Pro.png │ ├── Magna2_230.png │ ├── Magna2_300.png │ ├── Magna2_400.png │ ├── Magna2_500.png │ ├── MakerStarterbackplate.png │ ├── MakerbotSketch.png │ ├── MakerbotSketchSprint.png │ ├── Mark2_for_Ultimaker2_backplate.png │ ├── StereotechSte320backplate.png │ ├── Ultimaker2ExtendedPlusbackplate.png │ ├── Ultimaker2Extendedbackplate.png │ ├── Ultimaker2Gobackplate.png │ ├── Ultimaker2PlusConnectbackplate.png │ ├── Ultimaker2Plusbackplate.png │ ├── Ultimaker2backplate.png │ ├── Ultimaker3Extendedbackplate.png │ ├── Ultimaker3backplate.png │ ├── UltimakerFactor4Backplate.png │ ├── UltimakerPlusbackplate.png │ ├── UltimakerS3backplate.png │ ├── UltimakerS5backplate.png │ ├── UltimakerS6backplate.png │ ├── UltimakerS7backplate.png │ ├── UltimakerS8backplate.png │ ├── Wanhaobackplate.png │ ├── ankermake_m5.png │ ├── ankermake_m5c.png │ ├── anycubic-chiron.png │ ├── anycubic_kobra_s1_buildplate_texture.png │ ├── anycubic_predator.png │ ├── cor.png │ ├── cubicon_icon.png │ ├── cubicon_log.png │ ├── cura-icon-32.png │ ├── cura-icon-32_wip.png │ ├── cura-icon.png │ ├── cura-icon_wip.png │ ├── cura-share.png │ ├── cura.png │ ├── cura_enterprise.png │ ├── cura_wip.png │ ├── dagoma_sigma_pro.png │ ├── dxu_backplate.png │ ├── eryone_thinker_plate.png │ ├── fabtotum_platform.png │ ├── farm2ceplate.png │ ├── farm2plate.png │ ├── flyingbear_platform.png │ ├── hellbot.png │ ├── hellbot_hidra.png │ ├── hellbot_hidra_plus.png │ ├── hellbot_magna_SE.png │ ├── hms434.png │ ├── kitten.jpg │ ├── koonovo.png │ ├── koshertext.png │ ├── moai.jpg │ ├── svtbacktext.png │ ├── tank_m.png │ ├── uni.png │ ├── wanhao-icon.png │ └── zav.png ├── intent │ ├── deltacomb │ │ ├── ABS │ │ │ ├── deltacomb_DBE0.40_ABS_accurate_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_accurate_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_accurate_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_quick_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_quick_E.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_accurate_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_accurate_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_accurate_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_quick_D.inst.cfg │ │ │ └── deltacomb_FBE0.40_ABS_quick_E.inst.cfg │ │ ├── PETG │ │ │ ├── deltacomb_DBE0.40_PETG_accurate_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_accurate_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_accurate_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_quick_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_quick_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_quick_E.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_accurate_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_accurate_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_accurate_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_quick_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_quick_D.inst.cfg │ │ │ └── deltacomb_FBE0.40_PETG_quick_E.inst.cfg │ │ └── PLA │ │ │ ├── deltacomb_DBE0.40_PLA_accurate_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_accurate_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_accurate_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_quick_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_quick_E.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_accurate_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_accurate_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_accurate_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_quick_D.inst.cfg │ │ │ └── deltacomb_FBE0.40_PLA_quick_E.inst.cfg │ ├── elegoo_base │ │ └── PLA │ │ │ ├── elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg │ │ │ ├── elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg │ │ │ ├── elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg │ │ │ ├── elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg │ │ │ ├── elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg │ │ │ ├── elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg │ │ │ └── elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg │ ├── elegoo_neptune_4 │ │ └── PLA │ │ │ ├── elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg │ │ │ ├── elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg │ │ │ ├── elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg │ │ │ ├── elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg │ │ │ ├── elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg │ │ │ ├── elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg │ │ │ ├── elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg │ │ │ └── elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg │ ├── liquid │ │ ├── liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg │ │ ├── liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg │ │ ├── liquid_vo0.4_ABS_Fast_Visual.inst.cfg │ │ ├── liquid_vo0.4_ABS_High_Visual.inst.cfg │ │ ├── liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg │ │ ├── liquid_vo0.4_ABS_Normal_Visual.inst.cfg │ │ ├── liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg │ │ ├── liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg │ │ ├── liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg │ │ ├── liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg │ │ ├── liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg │ │ ├── liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg │ │ ├── liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg │ │ ├── liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg │ │ ├── liquid_vo0.4_PETG_Fast_Visual.inst.cfg │ │ ├── liquid_vo0.4_PETG_High_Visual.inst.cfg │ │ ├── liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg │ │ ├── liquid_vo0.4_PETG_Normal_Visual.inst.cfg │ │ ├── liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg │ │ ├── liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg │ │ ├── liquid_vo0.4_PLA_Fast_Visual.inst.cfg │ │ ├── liquid_vo0.4_PLA_High_Visual.inst.cfg │ │ ├── liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg │ │ └── liquid_vo0.4_PLA_Normal_Visual.inst.cfg │ ├── ultimaker_factor4 │ │ ├── um_f4_aa0.25_petg_0.1mm_visual.inst.cfg │ │ ├── um_f4_aa0.25_pla_0.1mm_visual.inst.cfg │ │ ├── um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg │ │ ├── um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_petg_0.1mm_visual.inst.cfg │ │ ├── um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_petg_0.2mm_quick.inst.cfg │ │ ├── um_f4_aa0.4_petg_0.3mm_quick.inst.cfg │ │ ├── um_f4_aa0.4_pla_0.1mm_visual.inst.cfg │ │ ├── um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_pla_0.2mm_quick.inst.cfg │ │ ├── um_f4_aa0.4_pla_0.3mm_quick.inst.cfg │ │ ├── um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg │ │ ├── um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.8_petg_0.4mm_quick.inst.cfg │ │ ├── um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.8_pla_0.4mm_quick.inst.cfg │ │ ├── um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg │ │ ├── um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.4_nylon-cf-slide_0.2mm_strong.inst.cfg │ │ ├── um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg │ │ ├── um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_f4_cc0.6_nylon-cf-slide_0.2mm_strong.inst.cfg │ │ ├── um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg │ │ ├── um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg │ │ ├── um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg │ │ ├── um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg │ │ ├── um_f4_ht0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_f4_ht0.6_nylon-cf-slide_0.2mm_strong.inst.cfg │ │ ├── um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg │ │ └── um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg │ ├── ultimaker_method │ │ ├── um_method_1a_um-nylon-175_0.2mm_solid.inst.cfg │ │ ├── um_method_1a_um-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_method_1a_um-tough-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_method_1c_um-nylon-175_0.2mm_solid.inst.cfg │ │ ├── um_method_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_method_1c_um-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_method_1c_um-tough-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_method_labs_um-nylon-175_0.2mm_solid.inst.cfg │ │ ├── um_method_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_method_labs_um-pla-175_0.2mm_solid.inst.cfg │ │ └── um_method_labs_um-tough-pla-175_0.2mm_solid.inst.cfg │ ├── ultimaker_methodx │ │ ├── um_methodx_1a_um-nylon-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1a_um-tough-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-absr-175_0.2mm_highspeed.inst.cfg │ │ ├── um_methodx_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg │ │ ├── um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-nylon-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-pc-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1c_um-tough-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1xa_um-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1xa_um-absr-175_0.2mm_highspeed.inst.cfg │ │ ├── um_methodx_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg │ │ ├── um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-absr-175_0.2mm_highspeed.inst.cfg │ │ ├── um_methodx_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg │ │ ├── um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-nylon-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-pc-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg │ │ └── um_methodx_labs_um-tough-pla-175_0.2mm_solid.inst.cfg │ ├── ultimaker_methodxl │ │ ├── um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1a_um-tough-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-absr-175_0.2mm_highspeed.inst.cfg │ │ ├── um_methodxl_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg │ │ ├── um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-pc-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1c_um-tough-pla-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1xa_um-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1xa_um-absr-175_0.2mm_highspeed.inst.cfg │ │ ├── um_methodxl_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg │ │ ├── um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-absr-175_0.2mm_highspeed.inst.cfg │ │ ├── um_methodxl_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg │ │ ├── um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-pc-abs-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg │ │ ├── um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg │ │ └── um_methodxl_labs_um-tough-pla-175_0.2mm_solid.inst.cfg │ ├── ultimaker_replicator_plus │ │ └── um_replicator_b_smartextruder_plus_um-pla-175_0.2mm_quick.inst.cfg │ ├── ultimaker_s3 │ │ ├── um_s3_aa0.4_abs_0.06mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.15mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.1mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.06mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.15mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.1mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg │ │ ├── um_s3_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg │ │ ├── um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg │ │ ├── um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg │ │ ├── um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg │ │ ├── um_s3_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg │ │ ├── um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg │ │ ├── um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg │ │ └── um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg │ ├── ultimaker_s5 │ │ ├── um_s5_aa0.4_abs_0.06mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.15mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.1mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.06mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.15mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.1mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg │ │ ├── um_s5_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg │ │ ├── um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg │ │ ├── um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg │ │ ├── um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg │ │ ├── um_s5_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg │ │ ├── um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg │ │ ├── um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg │ │ └── um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg │ ├── ultimaker_s8 │ │ ├── um_s8_aa0.4_abs_0.06mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.1mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_cpe_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_cpe_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_nylon_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_nylon_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_pc_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_pc_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_petg_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_petg_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.06mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.1mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.06mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.06mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.1mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.06mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.1mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.06mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.1mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.4mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.4mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.4mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg │ │ ├── um_s8_aa_plus_0.4_abs_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa_plus_0.4_abs_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa_plus_0.4_cpe-plus_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa_plus_0.4_cpe_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pc_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa_plus_0.4_petg_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa_plus_0.4_petg_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pla_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pla_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_aa_plus_0.4_tough-pla_0.15mm_visual.inst.cfg │ │ ├── um_s8_aa_plus_0.4_tough-pla_0.2mm_engineering.inst.cfg │ │ ├── um_s8_aa_plus_0.4_tough-pla_0.2mm_quick.inst.cfg │ │ ├── um_s8_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc0.4_petcf_0.15mm_annealing.inst.cfg │ │ ├── um_s8_cc0.4_petcf_0.15mm_engineering.inst.cfg │ │ ├── um_s8_cc0.4_petcf_0.2mm_annealing.inst.cfg │ │ ├── um_s8_cc0.4_petcf_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc0.6_petcf_0.15mm_annealing.inst.cfg │ │ ├── um_s8_cc0.6_petcf_0.15mm_engineering.inst.cfg │ │ ├── um_s8_cc0.6_petcf_0.2mm_annealing.inst.cfg │ │ ├── um_s8_cc0.6_petcf_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc_plus_0.4_cpe-plus_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc_plus_0.4_pc_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc_plus_0.4_petcf_0.2mm_engineering.inst.cfg │ │ ├── um_s8_cc_plus_0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg │ │ └── um_s8_cc_plus_0.6_petcf_0.2mm_engineering.inst.cfg │ ├── ultimaker_sketch_sprint │ │ ├── um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg │ │ ├── um_sketch_sprint_0.4mm_um-pla-175_0.2mm_visual.inst.cfg │ │ ├── um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg │ │ └── um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm_visual.inst.cfg │ ├── uni_base │ │ ├── abs │ │ │ ├── abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg │ │ │ ├── abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg │ │ │ ├── abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg │ │ │ ├── abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg │ │ │ ├── abs_nozzle_0.40_layer_0.20_quick.inst.cfg │ │ │ ├── abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg │ │ │ ├── abs_nozzle_0.40_layer_0.25_quick.inst.cfg │ │ │ └── abs_nozzle_0.40_layer_0.30_quick.inst.cfg │ │ ├── petg │ │ │ ├── petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg │ │ │ ├── petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg │ │ │ ├── petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg │ │ │ ├── petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg │ │ │ ├── petg_nozzle_0.40_layer_0.20_quick.inst.cfg │ │ │ ├── petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg │ │ │ ├── petg_nozzle_0.40_layer_0.25_quick.inst.cfg │ │ │ └── petg_nozzle_0.40_layer_0.30_quick.inst.cfg │ │ └── pla │ │ │ ├── pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.20_quick.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.25_quick.inst.cfg │ │ │ └── pla_nozzle_0.40_layer_0.30_quick.inst.cfg │ └── zav_base │ │ ├── abs │ │ ├── zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg │ │ ├── zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg │ │ ├── zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg │ │ ├── zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg │ │ ├── zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg │ │ ├── zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg │ │ ├── zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg │ │ └── zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg │ │ ├── petg │ │ ├── zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg │ │ ├── zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg │ │ ├── zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg │ │ ├── zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg │ │ ├── zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg │ │ ├── zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg │ │ ├── zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg │ │ └── zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg │ │ └── pla │ │ ├── zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg │ │ ├── zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg │ │ ├── zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg │ │ ├── zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg │ │ ├── zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg │ │ ├── zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg │ │ ├── zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg │ │ └── zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg ├── meshes │ ├── 101hero-platform.3mf │ ├── 3dator_platform.3mf │ ├── 3di_d300_platform.STL │ ├── 3dtech_semi_professional_platform.3mf │ ├── Atom 3 bed.3mf │ ├── Atom 3 lite bed.3mf │ ├── BEEVERYCREATIVE-helloBEEprusa.3mf │ ├── BIQU_BX_PLATE.stl │ ├── BIQU_Hurakan_bed.stl │ ├── BIQU_SSS.stl │ ├── FT-5_build_plate.3mf │ ├── FelixPro2_platform.obj │ ├── FelixTec4_platform.3mf │ ├── FlashForge_DreamerNX.obj │ ├── Hellbot_Magna_2_230.obj │ ├── Hellbot_Magna_2_300.obj │ ├── Hellbot_Magna_2_400.obj │ ├── Hellbot_Magna_2_500.obj │ ├── Hellbot_Magna_SE_300.obj │ ├── Hellbot_Magna_SE_Pro.obj │ ├── Original_Prusa_i3_MK3S_MK3_platform.3mf │ ├── SH65_platform.STL │ ├── STREAM20PRO_platform.STL │ ├── STREAM30PRO_platform.STL │ ├── STREAM30ULTRA_platform.STL │ ├── Vertex_build_panel.3mf │ ├── alya_nx_platform.3mf │ ├── alya_platform.3mf │ ├── aneta6_platform.3mf │ ├── ankermake_m5_platform.obj │ ├── ankermake_m5c_platform.obj │ ├── anycubic_4max_platform.3mf │ ├── anycubic_chiron_platform.obj │ ├── anycubic_i3_mega_platform.3mf │ ├── anycubic_i3_mega_s_platform.3mf │ ├── anycubic_i3_mega_x_platform.stl │ ├── anycubic_kobra2_platform.stl │ ├── anycubic_kobra3v2_buildplate.stl │ ├── anycubic_kobra_s1_buildplate.obj │ ├── anycubic_mega_zero_platform.stl │ ├── anycubic_vyper_platform.stl │ ├── arjun300_platform.stl │ ├── arjunpro300_platform.STL │ ├── artemis_platform.3mf │ ├── artillery_genius.stl │ ├── artillery_hornet.stl │ ├── artillery_swx1.stl │ ├── atmat_asterion_platform.stl │ ├── atmat_signal_pro_platform.stl │ ├── beamup_l.3mf │ ├── beamup_s.3mf │ ├── blocks_mk2_platform.stl │ ├── blocks_pros100_platform.stl │ ├── blocks_pros30_platform.stl │ ├── blocks_r21_platform.stl │ ├── blocks_rd50_platform.stl │ ├── blocks_zero_platform.stl │ ├── blv_mgn_cube_300_platform.3mf │ ├── blv_mgn_cube_350_platform.3mf │ ├── bq_hephestos_2_platform.3mf │ ├── bq_hephestos_platform.3mf │ ├── bq_witbox_platform.3mf │ ├── builder_premium_platform.3mf │ ├── cartesio_platform.3mf │ ├── cr-x.3mf │ ├── creality_cr10spro.3mf │ ├── creality_ender3.3mf │ ├── creality_ender3max.stl │ ├── cremaker_platform_200.obj │ ├── cremaker_platform_220.obj │ ├── dagoma_discoeasy200.3mf │ ├── dagoma_discoeasy200_bicolor.3mf │ ├── dagoma_discoultimate.3mf │ ├── dagoma_discoultimate_bicolor.3mf │ ├── dagoma_magis.3mf │ ├── dagoma_neva.3mf │ ├── dagoma_pro430.obj │ ├── dagoma_sigma.stl │ ├── dagoma_sigma_pro.obj │ ├── deltacomb.3mf │ ├── deltacomb_dc20.stl │ ├── deltacomb_dc30.stl │ ├── diy220_platform.obj │ ├── elegoo_neptune_2.stl │ ├── elegoo_platform.3mf │ ├── elegoo_platform_max.3mf │ ├── eryone_er20_plateform.stl │ ├── eryone_thinker_platform.obj │ ├── fabtotum_platform.3mf │ ├── fabxpro_platform.3mf │ ├── farm2_platform.obj │ ├── flsun_qq_s.3mf │ ├── flsun_sr.stl │ ├── flsun_v400.stl │ ├── flyingbear_platform.obj │ ├── gmax_1-5_xt-plus_s3d_full model_150707.3mf │ ├── grr_neo_platform.3mf │ ├── hardprint_hozo_ix_platform.stl │ ├── hardprint_hozo_platform.stl │ ├── hctech_hc300-m1&m1h.3mf │ ├── hctech_hc300-m2h.3mf │ ├── hctech_hc300-m3.3mf │ ├── hellbot_adonis.obj │ ├── hellbot_hidra.obj │ ├── hellbot_hidra_plus.obj │ ├── hellbot_magna.obj │ ├── hellbot_magna_SE.obj │ ├── hms_platform.obj │ ├── ideagen3D_sapphire_plus.3mf │ ├── imade3d_jellybox_2_platform.3mf │ ├── imade3d_jellybox_platform.3mf │ ├── inat_proton_x_buildplate.stl │ ├── inventor_platform.3mf │ ├── jgaurora_a5.3mf │ ├── jgaurora_a6_platform.stl │ ├── kemiq_q2.3mf │ ├── kingroon_kp3.stl │ ├── kingroon_kp3s.stl │ ├── koonovo.obj │ ├── koonovo_kn3.stl │ ├── koonovo_kn5.stl │ ├── kossel_platform.3mf │ ├── kossel_pro_build_platform.3mf │ ├── leapfrog_bolt_pro_platform.3mf │ ├── liquid_platform.stl │ ├── lnl3d_d3.stl │ ├── lnl3d_d5.stl │ ├── lnl3d_d6.3mf │ ├── longer_235mm_platform.stl │ ├── longer_310mm_platform.stl │ ├── longer_415mm_platform.stl │ ├── longer_cube2_platform.stl │ ├── lotmaxx_sc_10_20_platform.3mf │ ├── lulzbot_mini.stl │ ├── lulzbot_taz_pro_bed.stl │ ├── makeR_pegasus_platform.3mf │ ├── makeR_prusa_tairona_i3_platform.3mf │ ├── makergear_m2_platform.3mf │ ├── makerstarter_platform.3mf │ ├── malyan_m200_platform.3mf │ ├── mankati_fullscale_xt_plus_platform.3mf │ ├── mendel90_platform.3mf │ ├── mingda_d2_base.stl │ ├── mingda_d4pro_base.stl │ ├── mingda_magician_max_base.stl │ ├── mingda_magician_pro_base.stl │ ├── mingda_magician_x_base.stl │ ├── mingda_rock3_base.stl │ ├── mixware_hyper_k_platform.stl │ ├── mixware_hyper_s_platform.stl │ ├── mixware_vulcan_platform.stl │ ├── mixware_wand_platform.stl │ ├── moai.obj │ ├── mp_mini_delta_platform.3mf │ ├── npscura.stl │ ├── pbr3d_g1_buildplate.stl │ ├── predator_platform.stl │ ├── printrbot_play.3mf │ ├── printrbot_simple_metal_platform.3mf │ ├── printrbot_simple_metal_upgrade.3mf │ ├── prusai3_platform.3mf │ ├── prusai3_xl_platform.3mf │ ├── ratrig_vcore3_200.stl │ ├── ratrig_vcore3_300.stl │ ├── ratrig_vcore3_400.stl │ ├── ratrig_vcore3_500.stl │ ├── ratrig_vminion.stl │ ├── rigid3d_mucit2_platform.3mf │ ├── rigid3d_mucit_platform.3mf │ ├── rigid3d_zero2_platform.3mf │ ├── rigid3d_zero3_platform.3mf │ ├── rigidbot_platform.3mf │ ├── rigidbotbig_platform.3mf │ ├── rostock_platform.3mf │ ├── sapphireplus_platform.stl │ ├── sapphirepro_platform.stl │ ├── skriware_2_platform.3mf │ ├── sovol_sv08_buildplate_model.stl │ ├── stereotech_start.3mf │ ├── stereotech_ste320_platform.obj │ ├── tam_series1.3mf │ ├── tank_m.obj │ ├── tevo_blackwidow.3mf │ ├── tevo_tarantula_pro_platform.3mf │ ├── tinyboy_fabrikator15.stl │ ├── tinyboy_ra20.obj │ ├── tizyx_k25_platform.3mf │ ├── trimaker_cosmosII_platform.stl │ ├── trimaker_nebula_platform.stl │ ├── tronxy.stl │ ├── twotrees235x235_generic.stl │ ├── twotrees300x300_generic.stl │ ├── twotrees_platform.stl │ ├── ultimaker2_platform.obj │ ├── ultimaker2_plus_connect_platform.obj │ ├── ultimaker2go_platform.obj │ ├── ultimaker3_platform.obj │ ├── ultimaker_factor4_platform.obj │ ├── ultimaker_method_platform.stl │ ├── ultimaker_method_xl_platform.stl │ ├── ultimaker_platform.3mf │ ├── ultimaker_replicator_plus_platform.obj │ ├── ultimaker_s3_platform.obj │ ├── ultimaker_s5_platform.obj │ ├── ultimaker_s7_platform.obj │ ├── ultimaker_sketch_large_platform.obj │ ├── ultimaker_sketch_platform.obj │ ├── ultimaker_sketch_sprint_platform.obj │ ├── uni_200_platform.stl │ ├── uni_250_platform.stl │ ├── uni_300_platform.stl │ ├── uni_mini_platform.stl │ ├── uni_print_3d_platform.3mf │ ├── vivedino_trex.stl │ ├── voron0_120_bed.stl │ ├── voron2_250_bed.3mf │ ├── voron2_300_bed.3mf │ ├── voron2_350_bed.3mf │ ├── voron_trident_250mm_bed_model.stl │ ├── voron_trident_300mm_bed_model.stl │ ├── voron_trident_350mm_bed_model.stl │ ├── vzbot_235_bed.stl │ ├── vzbot_330_bed.stl │ ├── wanhao_110_110_platform.obj │ ├── wanhao_150_150_platform.obj │ ├── wanhao_200_200_platform.obj │ ├── wanhao_225_145_platform.obj │ ├── wanhao_300_200_platform.obj │ ├── wanhao_300_300_platform.obj │ ├── weedo_x40.3mf │ ├── z-bolt_classic_platform.3mf │ ├── z-bolt_plus_platform.3mf │ ├── zav_big.stl │ ├── zav_bigplus.stl │ ├── zav_l.stl │ ├── zav_max.stl │ ├── zav_maxpro.stl │ ├── zav_mini.stl │ ├── zyyx_platform.3mf │ └── zyyx_pro_platform.stl ├── public_key.pem ├── qml │ ├── Account │ │ ├── AccountDetails.qml │ │ ├── AccountWidget.qml │ │ ├── AvatarImage.qml │ │ ├── GeneralOperations.qml │ │ ├── SyncState.qml │ │ └── UserOperations.qml │ ├── ActionButton.qml │ ├── ActionPanel │ │ ├── ActionPanelWidget.qml │ │ ├── OutputDevicesActionButton.qml │ │ ├── OutputProcessWidget.qml │ │ ├── PrintInformationWidget.qml │ │ ├── PrintJobInformation.qml │ │ └── SliceProcessWidget.qml │ ├── Actions.qml │ ├── ApplicationSwitcher │ │ ├── ApplicationButton.qml │ │ ├── ApplicationSwitcher.qml │ │ └── ApplicationSwitcherPopup.qml │ ├── BorderGroup.qml │ ├── CategoryButton.qml │ ├── Cura.qml │ ├── Dialogs │ │ ├── AboutDialog.qml │ │ ├── AskOpenAsProjectOrModelsDialog.qml │ │ ├── ChoosePrinterDialog.qml │ │ ├── ColorDialog.qml │ │ ├── DiscardOrKeepProfileChangesDialog.qml │ │ ├── LicenseDialog.qml │ │ ├── MessageDialog.qml │ │ ├── OpenFilesIncludingProjectsDialog.qml │ │ ├── RenameDialog.qml │ │ └── WorkspaceSummaryDialog.qml │ ├── EmptyViewMenuComponent.qml │ ├── ExpandableComponent.qml │ ├── ExpandableComponentHeader.qml │ ├── ExpandablePopup.qml │ ├── ExtruderButton.qml │ ├── ExtruderIcon.qml │ ├── FPSItem.qml │ ├── IconWithText.qml │ ├── JobSpecs.qml │ ├── LabelBar.qml │ ├── MachineAction.qml │ ├── MachineSettings │ │ ├── ComboBoxWithOptions.qml │ │ ├── GcodeTextArea.qml │ │ ├── NumericTextFieldWithUnit.qml │ │ ├── PrintHeadMinMaxTextField.qml │ │ └── SimpleCheckBox.qml │ ├── MainWindow │ │ ├── ApplicationMenu.qml │ │ └── MainWindowHeader.qml │ ├── Menus │ │ ├── ConfigurationMenu │ │ │ ├── AutoConfiguration.qml │ │ │ ├── ConfigurationItem.qml │ │ │ ├── ConfigurationListView.qml │ │ │ ├── ConfigurationMenu.qml │ │ │ ├── CustomConfiguration.qml │ │ │ └── PrintCoreConfiguration.qml │ │ ├── ContextMenu.qml │ │ ├── EditMenu.qml │ │ ├── ExtensionMenu.qml │ │ ├── FileMenu.qml │ │ ├── HelpMenu.qml │ │ ├── MaterialBrandMenu.qml │ │ ├── MaterialBrandSubMenu.qml │ │ ├── MaterialMenu.qml │ │ ├── NozzleMenu.qml │ │ ├── OpenFilesMenu.qml │ │ ├── PreferencesMenu.qml │ │ ├── PrinterMenu.qml │ │ ├── PrinterTypeMenu.qml │ │ ├── RecentFilesMenu.qml │ │ ├── SaveProjectMenu.qml │ │ ├── SettingVisibilityPresetsMenu.qml │ │ ├── SettingsMenu.qml │ │ └── ViewMenu.qml │ ├── ModeSelectorButton.qml │ ├── MonitorButton.qml │ ├── ObjectItemButton.qml │ ├── ObjectSelector.qml │ ├── Preferences │ │ ├── GeneralPage.qml │ │ ├── MachinesPage.qml │ │ ├── Materials │ │ │ ├── MaterialsBrandSection.qml │ │ │ ├── MaterialsDetailsPanel.qml │ │ │ ├── MaterialsList.qml │ │ │ ├── MaterialsPage.qml │ │ │ ├── MaterialsSlot.qml │ │ │ ├── MaterialsSyncDialog.qml │ │ │ ├── MaterialsTypeSection.qml │ │ │ └── MaterialsView.qml │ │ ├── PreferencesDialog.qml │ │ ├── ProfilesPage.qml │ │ ├── ReadOnlyTextArea.qml │ │ ├── SettingVisibilityCategory.qml │ │ ├── SettingVisibilityItem.qml │ │ └── SettingVisibilityPage.qml │ ├── PrimaryButton.qml │ ├── PrintMonitor.qml │ ├── PrintSetupHeaderButton.qml │ ├── PrintSetupSelector │ │ ├── Custom │ │ │ ├── CustomPrintSetup.qml │ │ │ ├── MenuButton.qml │ │ │ └── QualitiesWithIntentMenu.qml │ │ ├── PrintSetupSelector.qml │ │ ├── PrintSetupSelectorContents.qml │ │ ├── PrintSetupSelectorHeader.qml │ │ ├── ProfileWarningReset.qml │ │ └── Recommended │ │ │ ├── RecommendedAdhesionSelector.qml │ │ │ ├── RecommendedPrintSetup.qml │ │ │ ├── RecommendedQualityProfileSelector.qml │ │ │ ├── RecommendedResolutionSelector.qml │ │ │ ├── RecommendedSettingItem.qml │ │ │ ├── RecommendedSettingSection.qml │ │ │ ├── RecommendedStrengthSelector.qml │ │ │ ├── RecommendedSupportSelector.qml │ │ │ └── UnsupportedProfileIndication.qml │ ├── PrintSetupTooltip.qml │ ├── PrinterOutput │ │ ├── ExtruderBox.qml │ │ ├── HeatedBedBox.qml │ │ ├── ManualPrinterControl.qml │ │ ├── MonitorItem.qml │ │ ├── MonitorSection.qml │ │ └── OutputDeviceHeader.qml │ ├── PrinterSelector │ │ ├── MachineListButton.qml │ │ ├── MachineSelector.qml │ │ ├── MachineSelectorButton.qml │ │ ├── MachineSelectorList.qml │ │ └── PrintSelectorCard.qml │ ├── PrinterTypeLabel.qml │ ├── ProfileOverview.qml │ ├── RadioCheckbar.qml │ ├── RoundedRectangle.qml │ ├── SearchBar.qml │ ├── SecondaryButton.qml │ ├── Settings │ │ ├── SettingCategory.qml │ │ ├── SettingCheckBox.qml │ │ ├── SettingComboBox.qml │ │ ├── SettingExtruder.qml │ │ ├── SettingItem.qml │ │ ├── SettingOptionalExtruder.qml │ │ ├── SettingTextField.qml │ │ ├── SettingUnknown.qml │ │ └── SettingView.qml │ ├── SpinBox.qml │ ├── TableView.qml │ ├── TertiaryButton.qml │ ├── ToolTip.qml │ ├── Toolbar.qml │ ├── ViewOrientationButton.qml │ ├── ViewOrientationControls.qml │ ├── ViewsSelector.qml │ ├── WelcomePages │ │ ├── AddCloudPrintersView.qml │ │ ├── AddLocalPrinterScrollView.qml │ │ ├── AddNetworkPrinterScrollView.qml │ │ ├── AddPrinterByIpContent.qml │ │ ├── AddThirdPartyPrinter.qml │ │ ├── AddUltimakerOrThirdPartyPrinter.qml │ │ ├── AddUltimakerOrThirdPartyPrinterStack.qml │ │ ├── AddUltimakerPrinter.qml │ │ ├── ChangelogContent.qml │ │ ├── CloudContent.qml │ │ ├── DataCollectionsContent.qml │ │ ├── DropDownHeader.qml │ │ ├── DropDownWidget.qml │ │ ├── FirstStartMachineActionsContent.qml │ │ ├── ImageTile.qml │ │ ├── PrinterCard.qml │ │ ├── UserAgreementContent.qml │ │ ├── WelcomeContent.qml │ │ ├── WelcomeDialogItem.qml │ │ ├── WhatsNewContent.qml │ │ ├── WizardDialog.qml │ │ └── WizardPanel.qml │ ├── Widgets │ │ ├── ComboBox.qml │ │ ├── Menu.qml │ │ ├── MenuItem.qml │ │ ├── MenuSeparator.qml │ │ ├── NotificationIcon.qml │ │ ├── RadioButton.qml │ │ ├── ScrollView.qml │ │ ├── ScrollableTextArea.qml │ │ ├── SingleSettingComboBox.qml │ │ ├── SingleSettingExtruderSelectorBar.qml │ │ ├── SingleSettingSlider.qml │ │ ├── SingleSettingTextField.qml │ │ └── TextField.qml │ └── qmldir ├── quality │ ├── Leapfrog_Bolt_Pro │ │ ├── Leapfrog_Bolt_Pro_global_standard.inst.cfg │ │ ├── abs │ │ │ ├── Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg │ │ │ └── Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg │ │ ├── epla │ │ │ ├── Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg │ │ │ └── Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg │ │ └── pva │ │ │ ├── Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg │ │ │ └── Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg │ ├── abax_pri3 │ │ ├── apri3_pla_fast.inst.cfg │ │ ├── apri3_pla_high.inst.cfg │ │ └── apri3_pla_normal.inst.cfg │ ├── abax_pri5 │ │ ├── apri5_pla_fast.inst.cfg │ │ ├── apri5_pla_high.inst.cfg │ │ └── apri5_pla_normal.inst.cfg │ ├── abax_titan │ │ ├── atitan_pla_fast.inst.cfg │ │ ├── atitan_pla_high.inst.cfg │ │ └── atitan_pla_normal.inst.cfg │ ├── ankermake_m5 │ │ ├── ankermake_m5_draft.inst.cfg │ │ ├── ankermake_m5_fine.inst.cfg │ │ └── ankermake_m5_normal.inst.cfg │ ├── ankermake_m5c │ │ ├── ankermake_m5c_fast.inst.cfg │ │ ├── ankermake_m5c_normal.inst.cfg │ │ └── ankermake_m5c_precision.inst.cfg │ ├── anycubic_4max │ │ ├── abs │ │ │ ├── anycubic_4max_abs_draft.inst.cfg │ │ │ ├── anycubic_4max_abs_high.inst.cfg │ │ │ └── anycubic_4max_abs_normal.inst.cfg │ │ ├── anycubic_4max_draft.inst.cfg │ │ ├── anycubic_4max_high.inst.cfg │ │ ├── anycubic_4max_normal.inst.cfg │ │ ├── hips │ │ │ ├── anycubic_4max_hips_draft.inst.cfg │ │ │ ├── anycubic_4max_hips_high.inst.cfg │ │ │ └── anycubic_4max_hips_normal.inst.cfg │ │ ├── petg │ │ │ ├── anycubic_4max_petg_draft.inst.cfg │ │ │ ├── anycubic_4max_petg_high.inst.cfg │ │ │ └── anycubic_4max_petg_normal.inst.cfg │ │ └── pla │ │ │ ├── anycubic_4max_pla_draft.inst.cfg │ │ │ ├── anycubic_4max_pla_high.inst.cfg │ │ │ └── anycubic_4max_pla_normal.inst.cfg │ ├── anycubic_chiron │ │ ├── anycubic_chiron_draft.inst.cfg │ │ ├── anycubic_chiron_high.inst.cfg │ │ └── anycubic_chiron_normal.inst.cfg │ ├── anycubic_i3_mega │ │ ├── anycubic_i3_mega_draft.inst.cfg │ │ ├── anycubic_i3_mega_high.inst.cfg │ │ └── anycubic_i3_mega_normal.inst.cfg │ ├── anycubic_i3_mega_s │ │ ├── anycubic_i3_mega_s_draft.inst.cfg │ │ ├── anycubic_i3_mega_s_high.inst.cfg │ │ └── anycubic_i3_mega_s_normal.inst.cfg │ ├── anycubic_kobra │ │ ├── anycubic_kobra_abs.inst.cfg │ │ ├── anycubic_kobra_pla.inst.cfg │ │ └── anycubic_kobra_tpu.inst.cfg │ ├── anycubic_kobra_go │ │ ├── anycubic_kobra_go_abs.inst.cfg │ │ ├── anycubic_kobra_go_pla.inst.cfg │ │ └── anycubic_kobra_go_tpu.inst.cfg │ ├── anycubic_kobra_max │ │ ├── anycubic_kobra_max_pla.inst.cfg │ │ └── anycubic_kobra_max_tpu.inst.cfg │ ├── anycubic_kobra_plus │ │ └── anycubic_kobra_plus_normal.inst.cfg │ ├── anycubic_kobra_s1 │ │ ├── anycubic_kobra_s1_high_quality.inst.cfg │ │ └── anycubic_kobra_s1_standard.inst.cfg │ ├── anycubic_mega_zero │ │ ├── anycubic_mega_zero_draft.inst.cfg │ │ ├── anycubic_mega_zero_high.inst.cfg │ │ └── anycubic_mega_zero_normal.inst.cfg │ ├── anycubic_predator │ │ ├── predator_coarse.inst.cfg │ │ ├── predator_draft.inst.cfg │ │ ├── predator_extra_coarse.inst.cfg │ │ ├── predator_extra_fine.inst.cfg │ │ ├── predator_fine.inst.cfg │ │ └── predator_normal.inst.cfg │ ├── artillery │ │ ├── ABS │ │ │ ├── artillery_0.2_ABS_super.inst.cfg │ │ │ ├── artillery_0.2_ABS_ultra.inst.cfg │ │ │ ├── artillery_0.3_ABS_adaptive.inst.cfg │ │ │ ├── artillery_0.3_ABS_low.inst.cfg │ │ │ ├── artillery_0.3_ABS_standard.inst.cfg │ │ │ ├── artillery_0.3_ABS_super.inst.cfg │ │ │ ├── artillery_0.4_ABS_adaptive.inst.cfg │ │ │ ├── artillery_0.4_ABS_low.inst.cfg │ │ │ ├── artillery_0.4_ABS_standard.inst.cfg │ │ │ ├── artillery_0.4_ABS_super.inst.cfg │ │ │ ├── artillery_0.5_ABS_adaptive.inst.cfg │ │ │ ├── artillery_0.5_ABS_low.inst.cfg │ │ │ ├── artillery_0.5_ABS_standard.inst.cfg │ │ │ ├── artillery_0.5_ABS_super.inst.cfg │ │ │ ├── artillery_0.6_ABS_standard.inst.cfg │ │ │ ├── artillery_0.8_ABS_draft.inst.cfg │ │ │ └── artillery_1.0_ABS_draft.inst.cfg │ │ ├── PETG │ │ │ ├── artillery_0.2_PETG_super.inst.cfg │ │ │ ├── artillery_0.2_PETG_ultra.inst.cfg │ │ │ ├── artillery_0.3_PETG_adaptive.inst.cfg │ │ │ ├── artillery_0.3_PETG_low.inst.cfg │ │ │ ├── artillery_0.3_PETG_standard.inst.cfg │ │ │ ├── artillery_0.3_PETG_super.inst.cfg │ │ │ ├── artillery_0.4_PETG_adaptive.inst.cfg │ │ │ ├── artillery_0.4_PETG_low.inst.cfg │ │ │ ├── artillery_0.4_PETG_standard.inst.cfg │ │ │ ├── artillery_0.4_PETG_super.inst.cfg │ │ │ ├── artillery_0.5_PETG_adaptive.inst.cfg │ │ │ ├── artillery_0.5_PETG_low.inst.cfg │ │ │ ├── artillery_0.5_PETG_standard.inst.cfg │ │ │ ├── artillery_0.5_PETG_super.inst.cfg │ │ │ ├── artillery_0.6_PETG_standard.inst.cfg │ │ │ ├── artillery_0.8_PETG_draft.inst.cfg │ │ │ └── artillery_1.0_PETG_draft.inst.cfg │ │ ├── PLA │ │ │ ├── artillery_0.2_PLA_super.inst.cfg │ │ │ ├── artillery_0.2_PLA_ultra.inst.cfg │ │ │ ├── artillery_0.3_PLA_adaptive.inst.cfg │ │ │ ├── artillery_0.3_PLA_low.inst.cfg │ │ │ ├── artillery_0.3_PLA_standard.inst.cfg │ │ │ ├── artillery_0.3_PLA_super.inst.cfg │ │ │ ├── artillery_0.4_PLA_adaptive.inst.cfg │ │ │ ├── artillery_0.4_PLA_low.inst.cfg │ │ │ ├── artillery_0.4_PLA_standard.inst.cfg │ │ │ ├── artillery_0.4_PLA_super.inst.cfg │ │ │ ├── artillery_0.5_PLA_adaptive.inst.cfg │ │ │ ├── artillery_0.5_PLA_low.inst.cfg │ │ │ ├── artillery_0.5_PLA_standard.inst.cfg │ │ │ ├── artillery_0.5_PLA_super.inst.cfg │ │ │ ├── artillery_0.6_PLA_draft.inst.cfg │ │ │ ├── artillery_0.6_PLA_low.inst.cfg │ │ │ ├── artillery_0.6_PLA_standard.inst.cfg │ │ │ ├── artillery_0.8_PLA_draft.inst.cfg │ │ │ └── artillery_1.0_PLA_draft.inst.cfg │ │ ├── TPU │ │ │ ├── artillery_0.3_TPU_adaptive.inst.cfg │ │ │ ├── artillery_0.3_TPU_standard.inst.cfg │ │ │ ├── artillery_0.3_TPU_super.inst.cfg │ │ │ ├── artillery_0.4_TPU_adaptive.inst.cfg │ │ │ ├── artillery_0.4_TPU_standard.inst.cfg │ │ │ ├── artillery_0.4_TPU_super.inst.cfg │ │ │ ├── artillery_0.5_TPU_adaptive.inst.cfg │ │ │ ├── artillery_0.5_TPU_standard.inst.cfg │ │ │ ├── artillery_0.5_TPU_super.inst.cfg │ │ │ ├── artillery_0.6_TPU_standard.inst.cfg │ │ │ ├── artillery_0.8_TPU_draft.inst.cfg │ │ │ └── artillery_1.0_TPU_draft.inst.cfg │ │ ├── artillery_global_adaptive.inst.cfg │ │ ├── artillery_global_draft.inst.cfg │ │ ├── artillery_global_low.inst.cfg │ │ ├── artillery_global_standard.inst.cfg │ │ ├── artillery_global_super.inst.cfg │ │ ├── artillery_global_ultra.inst.cfg │ │ └── nylon │ │ │ ├── artillery_0.2_Nylon_super.inst.cfg │ │ │ ├── artillery_0.2_Nylon_ultra.inst.cfg │ │ │ ├── artillery_0.3_Nylon_adaptive.inst.cfg │ │ │ ├── artillery_0.3_Nylon_low.inst.cfg │ │ │ ├── artillery_0.3_Nylon_standard.inst.cfg │ │ │ ├── artillery_0.3_Nylon_super.inst.cfg │ │ │ ├── artillery_0.4_Nylon_adaptive.inst.cfg │ │ │ ├── artillery_0.4_Nylon_low.inst.cfg │ │ │ ├── artillery_0.4_Nylon_standard.inst.cfg │ │ │ ├── artillery_0.4_Nylon_super.inst.cfg │ │ │ ├── artillery_0.5_Nylon_adaptive.inst.cfg │ │ │ ├── artillery_0.5_Nylon_low.inst.cfg │ │ │ ├── artillery_0.5_Nylon_standard.inst.cfg │ │ │ ├── artillery_0.5_Nylon_super.inst.cfg │ │ │ ├── artillery_0.6_Nylon_standard.inst.cfg │ │ │ ├── artillery_0.8_Nylon_draft.inst.cfg │ │ │ └── artillery_1.0_Nylon_draft.inst.cfg │ ├── atmat_signal_pro │ │ ├── signal_pro_global_extrafast_quality.inst.cfg │ │ ├── signal_pro_global_extrafine_quality.inst.cfg │ │ ├── signal_pro_global_fast_quality.inst.cfg │ │ ├── signal_pro_global_fine_quality.inst.cfg │ │ ├── signal_pro_global_normal_quality.inst.cfg │ │ ├── signal_pro_global_sprint_quality.inst.cfg │ │ ├── signal_pro_global_supersprint_quality.inst.cfg │ │ ├── signal_pro_global_ultrasprint_quality.inst.cfg │ │ ├── signal_pro_v6_0.40_ABS_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_ABS_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_ABS_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_ABS_normal.inst.cfg │ │ ├── signal_pro_v6_0.40_HIPS_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_HIPS_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_HIPS_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_HIPS_normal.inst.cfg │ │ ├── signal_pro_v6_0.40_PA_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_PA_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_PA_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_PA_normal.inst.cfg │ │ ├── signal_pro_v6_0.40_PC_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_PC_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_PC_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_PC_normal.inst.cfg │ │ ├── signal_pro_v6_0.40_PETG_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_PETG_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_PETG_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_PETG_normal.inst.cfg │ │ ├── signal_pro_v6_0.40_PLA_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_PLA_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_PLA_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_PLA_normal.inst.cfg │ │ ├── signal_pro_v6_0.40_PVA_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_PVA_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_PVA_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_PVA_normal.inst.cfg │ │ ├── signal_pro_v6_0.40_TPU_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.40_TPU_fast.inst.cfg │ │ ├── signal_pro_v6_0.40_TPU_fine.inst.cfg │ │ ├── signal_pro_v6_0.40_TPU_normal.inst.cfg │ │ ├── signal_pro_v6_0.80_ABS_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_ABS_sprint.inst.cfg │ │ ├── signal_pro_v6_0.80_ABS_supersprint.inst.cfg │ │ ├── signal_pro_v6_0.80_HIPS_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_HIPS_sprint.inst.cfg │ │ ├── signal_pro_v6_0.80_HIPS_supersprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PA_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_PA_sprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PA_supersprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PC_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_PC_sprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PC_supersprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PETG_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_PETG_sprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PETG_supersprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PLA_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_PLA_sprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PLA_supersprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PVA_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_PVA_sprint.inst.cfg │ │ ├── signal_pro_v6_0.80_PVA_supersprint.inst.cfg │ │ ├── signal_pro_v6_0.80_TPU_extrafast.inst.cfg │ │ ├── signal_pro_v6_0.80_TPU_sprint.inst.cfg │ │ └── signal_pro_v6_0.80_TPU_supersprint.inst.cfg │ ├── beamup_l │ │ ├── beamup_l_coarse.inst.cfg │ │ ├── beamup_l_draft.inst.cfg │ │ ├── beamup_l_extra_fine.inst.cfg │ │ ├── beamup_l_fine.inst.cfg │ │ └── beamup_l_normal.inst.cfg │ ├── beamup_s │ │ ├── beamup_s_coarse.inst.cfg │ │ ├── beamup_s_draft.inst.cfg │ │ ├── beamup_s_extra_fine.inst.cfg │ │ ├── beamup_s_fine.inst.cfg │ │ └── beamup_s_normal.inst.cfg │ ├── biqu │ │ ├── b2 │ │ │ ├── biqu_b2_0.4_PLA_adaptive.inst.cfg │ │ │ ├── biqu_b2_0.4_PLA_draft.inst.cfg │ │ │ ├── biqu_b2_0.4_PLA_low.inst.cfg │ │ │ ├── biqu_b2_0.4_PLA_standard.inst.cfg │ │ │ ├── biqu_b2_0.4_PLA_super.inst.cfg │ │ │ ├── biqu_b2_0.4_PLA_ultra.inst.cfg │ │ │ ├── biqu_b2_global_adaptive.inst.cfg │ │ │ ├── biqu_b2_global_draft.inst.cfg │ │ │ ├── biqu_b2_global_low.inst.cfg │ │ │ ├── biqu_b2_global_standard.inst.cfg │ │ │ ├── biqu_b2_global_super.inst.cfg │ │ │ └── biqu_b2_global_ultra.inst.cfg │ │ └── base │ │ │ ├── biqu_base_0.2_ABS_super.inst.cfg │ │ │ ├── biqu_base_0.2_ABS_ultra.inst.cfg │ │ │ ├── biqu_base_0.2_PETG_super.inst.cfg │ │ │ ├── biqu_base_0.2_PETG_ultra.inst.cfg │ │ │ ├── biqu_base_0.2_PLA_super.inst.cfg │ │ │ ├── biqu_base_0.2_PLA_ultra.inst.cfg │ │ │ ├── biqu_base_0.3_ABS_adaptive.inst.cfg │ │ │ ├── biqu_base_0.3_ABS_low.inst.cfg │ │ │ ├── biqu_base_0.3_ABS_standard.inst.cfg │ │ │ ├── biqu_base_0.3_ABS_super.inst.cfg │ │ │ ├── biqu_base_0.3_PETG_adaptive.inst.cfg │ │ │ ├── biqu_base_0.3_PETG_low.inst.cfg │ │ │ ├── biqu_base_0.3_PETG_standard.inst.cfg │ │ │ ├── biqu_base_0.3_PETG_super.inst.cfg │ │ │ ├── biqu_base_0.3_PLA_adaptive.inst.cfg │ │ │ ├── biqu_base_0.3_PLA_low.inst.cfg │ │ │ ├── biqu_base_0.3_PLA_standard.inst.cfg │ │ │ ├── biqu_base_0.3_PLA_super.inst.cfg │ │ │ ├── biqu_base_0.3_TPU_adaptive.inst.cfg │ │ │ ├── biqu_base_0.3_TPU_standard.inst.cfg │ │ │ ├── biqu_base_0.3_TPU_super.inst.cfg │ │ │ ├── biqu_base_0.4_ABS_adaptive.inst.cfg │ │ │ ├── biqu_base_0.4_ABS_low.inst.cfg │ │ │ ├── biqu_base_0.4_ABS_standard.inst.cfg │ │ │ ├── biqu_base_0.4_ABS_super.inst.cfg │ │ │ ├── biqu_base_0.4_PETG_adaptive.inst.cfg │ │ │ ├── biqu_base_0.4_PETG_low.inst.cfg │ │ │ ├── biqu_base_0.4_PETG_standard.inst.cfg │ │ │ ├── biqu_base_0.4_PETG_super.inst.cfg │ │ │ ├── biqu_base_0.4_PLA_adaptive.inst.cfg │ │ │ ├── biqu_base_0.4_PLA_low.inst.cfg │ │ │ ├── biqu_base_0.4_PLA_standard.inst.cfg │ │ │ ├── biqu_base_0.4_PLA_super.inst.cfg │ │ │ ├── biqu_base_0.4_TPU_adaptive.inst.cfg │ │ │ ├── biqu_base_0.4_TPU_standard.inst.cfg │ │ │ ├── biqu_base_0.4_TPU_super.inst.cfg │ │ │ ├── biqu_base_0.5_ABS_adaptive.inst.cfg │ │ │ ├── biqu_base_0.5_ABS_low.inst.cfg │ │ │ ├── biqu_base_0.5_ABS_standard.inst.cfg │ │ │ ├── biqu_base_0.5_ABS_super.inst.cfg │ │ │ ├── biqu_base_0.5_PETG_adaptive.inst.cfg │ │ │ ├── biqu_base_0.5_PETG_low.inst.cfg │ │ │ ├── biqu_base_0.5_PETG_standard.inst.cfg │ │ │ ├── biqu_base_0.5_PETG_super.inst.cfg │ │ │ ├── biqu_base_0.5_PLA_adaptive.inst.cfg │ │ │ ├── biqu_base_0.5_PLA_low.inst.cfg │ │ │ ├── biqu_base_0.5_PLA_standard.inst.cfg │ │ │ ├── biqu_base_0.5_PLA_super.inst.cfg │ │ │ ├── biqu_base_0.5_TPU_adaptive.inst.cfg │ │ │ ├── biqu_base_0.5_TPU_standard.inst.cfg │ │ │ ├── biqu_base_0.5_TPU_super.inst.cfg │ │ │ ├── biqu_base_0.6_ABS_standard.inst.cfg │ │ │ ├── biqu_base_0.6_PETG_standard.inst.cfg │ │ │ ├── biqu_base_0.6_PLA_draft.inst.cfg │ │ │ ├── biqu_base_0.6_PLA_low.inst.cfg │ │ │ ├── biqu_base_0.6_PLA_standard.inst.cfg │ │ │ ├── biqu_base_0.6_TPU_standard.inst.cfg │ │ │ ├── biqu_base_0.8_ABS_draft.inst.cfg │ │ │ ├── biqu_base_0.8_PETG_draft.inst.cfg │ │ │ ├── biqu_base_0.8_PLA_draft.inst.cfg │ │ │ ├── biqu_base_0.8_TPU_draft.inst.cfg │ │ │ ├── biqu_base_1.0_ABS_draft.inst.cfg │ │ │ ├── biqu_base_1.0_PETG_draft.inst.cfg │ │ │ ├── biqu_base_1.0_PLA_draft.inst.cfg │ │ │ ├── biqu_base_1.0_TPU_draft.inst.cfg │ │ │ ├── biqu_base_global_adaptive.inst.cfg │ │ │ ├── biqu_base_global_draft.inst.cfg │ │ │ ├── biqu_base_global_low.inst.cfg │ │ │ ├── biqu_base_global_standard.inst.cfg │ │ │ ├── biqu_base_global_super.inst.cfg │ │ │ └── biqu_base_global_ultra.inst.cfg │ ├── blocks │ │ ├── Nozzle │ │ │ ├── blocks_global_0.20_draft.inst.cfg │ │ │ ├── blocks_global_0.20_standard.inst.cfg │ │ │ ├── blocks_global_0.30_draft.inst.cfg │ │ │ ├── blocks_global_0.30_standard.inst.cfg │ │ │ ├── blocks_global_0.30_ultra.inst.cfg │ │ │ ├── blocks_global_0.40_adaptive.inst.cfg │ │ │ ├── blocks_global_0.40_draft.inst.cfg │ │ │ ├── blocks_global_0.40_standard.inst.cfg │ │ │ ├── blocks_global_0.40_ultra.inst.cfg │ │ │ ├── blocks_global_0.50_adaptive.inst.cfg │ │ │ ├── blocks_global_0.50_draft.inst.cfg │ │ │ ├── blocks_global_0.50_standard.inst.cfg │ │ │ ├── blocks_global_0.50_ultra.inst.cfg │ │ │ ├── blocks_global_0.60_adaptive.inst.cfg │ │ │ ├── blocks_global_0.60_draft.inst.cfg │ │ │ ├── blocks_global_0.60_low.inst.cfg │ │ │ ├── blocks_global_0.60_standard.inst.cfg │ │ │ ├── blocks_global_0.60_ultra.inst.cfg │ │ │ ├── blocks_global_0.80_adaptive.inst.cfg │ │ │ ├── blocks_global_0.80_draft.inst.cfg │ │ │ ├── blocks_global_0.80_low.inst.cfg │ │ │ ├── blocks_global_0.80_standard.inst.cfg │ │ │ ├── blocks_global_0.80_superlow.inst.cfg │ │ │ ├── blocks_global_0.80_ultra.inst.cfg │ │ │ ├── blocks_global_1.0_adaptive.inst.cfg │ │ │ ├── blocks_global_1.0_draft.inst.cfg │ │ │ ├── blocks_global_1.0_low.inst.cfg │ │ │ ├── blocks_global_1.0_standard.inst.cfg │ │ │ ├── blocks_global_1.0_superlow.inst.cfg │ │ │ ├── blocks_global_1.0_ultra.inst.cfg │ │ │ ├── blocks_global_1.2_adaptive.inst.cfg │ │ │ ├── blocks_global_1.2_draft.inst.cfg │ │ │ ├── blocks_global_1.2_low.inst.cfg │ │ │ ├── blocks_global_1.2_standard.inst.cfg │ │ │ ├── blocks_global_1.2_superlow.inst.cfg │ │ │ └── blocks_global_1.2_ultra.inst.cfg │ │ └── Printcore │ │ │ ├── HT │ │ │ ├── blocks_global_ht_0.40_adaptive.inst.cfg │ │ │ ├── blocks_global_ht_0.40_draft.inst.cfg │ │ │ ├── blocks_global_ht_0.40_standard.inst.cfg │ │ │ ├── blocks_global_ht_0.40_ultra.inst.cfg │ │ │ ├── blocks_global_ht_0.50_adaptive.inst.cfg │ │ │ ├── blocks_global_ht_0.50_draft.inst.cfg │ │ │ ├── blocks_global_ht_0.50_standard.inst.cfg │ │ │ ├── blocks_global_ht_0.50_ultra.inst.cfg │ │ │ ├── blocks_global_ht_0.60_adaptive.inst.cfg │ │ │ ├── blocks_global_ht_0.60_draft.inst.cfg │ │ │ ├── blocks_global_ht_0.60_low.inst.cfg │ │ │ ├── blocks_global_ht_0.60_standard.inst.cfg │ │ │ ├── blocks_global_ht_0.60_ultra.inst.cfg │ │ │ ├── blocks_global_ht_0.80_adaptive.inst.cfg │ │ │ ├── blocks_global_ht_0.80_draft.inst.cfg │ │ │ ├── blocks_global_ht_0.80_low.inst.cfg │ │ │ ├── blocks_global_ht_0.80_standard.inst.cfg │ │ │ ├── blocks_global_ht_0.80_superlow.inst.cfg │ │ │ └── blocks_global_ht_0.80_ultra.inst.cfg │ │ │ └── ST │ │ │ ├── blocks_global_st_0.20_adaptive.inst.cfg │ │ │ ├── blocks_global_st_0.20_ultra.inst.cfg │ │ │ ├── blocks_global_st_0.30_adaptive.inst.cfg │ │ │ ├── blocks_global_st_0.30_standard.inst.cfg │ │ │ ├── blocks_global_st_0.30_ultra.inst.cfg │ │ │ ├── blocks_global_st_0.40_adaptive.inst.cfg │ │ │ ├── blocks_global_st_0.40_draft.inst.cfg │ │ │ ├── blocks_global_st_0.40_standard.inst.cfg │ │ │ ├── blocks_global_st_0.40_ultra.inst.cfg │ │ │ ├── blocks_global_st_0.50_adaptive.inst.cfg │ │ │ ├── blocks_global_st_0.50_draft.inst.cfg │ │ │ ├── blocks_global_st_0.50_standard.inst.cfg │ │ │ ├── blocks_global_st_0.50_ultra.inst.cfg │ │ │ ├── blocks_global_st_0.60_adaptive.inst.cfg │ │ │ ├── blocks_global_st_0.60_draft.inst.cfg │ │ │ ├── blocks_global_st_0.60_low.inst.cfg │ │ │ ├── blocks_global_st_0.60_standard.inst.cfg │ │ │ ├── blocks_global_st_0.60_ultra.inst.cfg │ │ │ ├── blocks_global_st_0.80_adaptive.inst.cfg │ │ │ ├── blocks_global_st_0.80_draft.inst.cfg │ │ │ ├── blocks_global_st_0.80_low.inst.cfg │ │ │ ├── blocks_global_st_0.80_standard.inst.cfg │ │ │ ├── blocks_global_st_0.80_superlow.inst.cfg │ │ │ ├── blocks_global_st_0.80_ultra.inst.cfg │ │ │ ├── blocks_global_st_1.0_adaptive.inst.cfg │ │ │ ├── blocks_global_st_1.0_draft.inst.cfg │ │ │ ├── blocks_global_st_1.0_low.inst.cfg │ │ │ ├── blocks_global_st_1.0_standard.inst.cfg │ │ │ ├── blocks_global_st_1.0_superlow.inst.cfg │ │ │ ├── blocks_global_st_1.0_ultra.inst.cfg │ │ │ ├── blocks_global_st_1.2_adaptive.inst.cfg │ │ │ ├── blocks_global_st_1.2_draft.inst.cfg │ │ │ ├── blocks_global_st_1.2_low.inst.cfg │ │ │ ├── blocks_global_st_1.2_standard.inst.cfg │ │ │ ├── blocks_global_st_1.2_superlow.inst.cfg │ │ │ └── blocks_global_st_1.2_ultra.inst.cfg │ ├── builder_premium │ │ ├── bp_BVOH_Coarse_Quality.inst.cfg │ │ ├── bp_BVOH_High_Quality.inst.cfg │ │ ├── bp_BVOH_Normal_Quality.inst.cfg │ │ ├── bp_Innoflex60_Coarse_Quality.inst.cfg │ │ ├── bp_Innoflex60_High_Quality.inst.cfg │ │ ├── bp_Innoflex60_Normal_Quality.inst.cfg │ │ ├── bp_PET_Coarse_Quality.inst.cfg │ │ ├── bp_PET_High_Quality.inst.cfg │ │ ├── bp_PET_Normal_Quality.inst.cfg │ │ ├── bp_PLA_Coarse_Quality.inst.cfg │ │ ├── bp_PLA_High_Quality.inst.cfg │ │ ├── bp_PLA_Normal_Quality.inst.cfg │ │ ├── bp_PVA_Coarse_Quality.inst.cfg │ │ ├── bp_PVA_High_Quality.inst.cfg │ │ ├── bp_PVA_Normal_Quality.inst.cfg │ │ ├── bp_global_Coarse_Quality.inst.cfg │ │ ├── bp_global_High_Quality.inst.cfg │ │ └── bp_global_Normal_Quality.inst.cfg │ ├── cartesio │ │ ├── abs │ │ │ ├── cartesio_0.25_abs_high.inst.cfg │ │ │ ├── cartesio_0.25_abs_normal.inst.cfg │ │ │ ├── cartesio_0.4_abs_high.inst.cfg │ │ │ ├── cartesio_0.4_abs_normal.inst.cfg │ │ │ ├── cartesio_0.8_abs_coarse.inst.cfg │ │ │ ├── cartesio_0.8_abs_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_abs_high.inst.cfg │ │ │ └── cartesio_0.8_abs_normal.inst.cfg │ │ ├── arnitel │ │ │ ├── cartesio_0.4_arnitel2045_high.inst.cfg │ │ │ └── cartesio_0.4_arnitel2045_normal.inst.cfg │ │ ├── cartesio_global_Coarse_Quality.inst.cfg │ │ ├── cartesio_global_Extra_Coarse_Quality.inst.cfg │ │ ├── cartesio_global_High_Quality.inst.cfg │ │ ├── cartesio_global_Normal_Quality.inst.cfg │ │ ├── hips │ │ │ ├── cartesio_0.25_hips_high.inst.cfg │ │ │ ├── cartesio_0.25_hips_normal.inst.cfg │ │ │ ├── cartesio_0.4_hips_high.inst.cfg │ │ │ ├── cartesio_0.4_hips_normal.inst.cfg │ │ │ ├── cartesio_0.8_hips_coarse.inst.cfg │ │ │ ├── cartesio_0.8_hips_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_hips_high.inst.cfg │ │ │ └── cartesio_0.8_hips_normal.inst.cfg │ │ ├── nylon │ │ │ ├── cartesio_0.25_nylon_high.inst.cfg │ │ │ ├── cartesio_0.25_nylon_normal.inst.cfg │ │ │ ├── cartesio_0.4_nylon_high.inst.cfg │ │ │ ├── cartesio_0.4_nylon_normal.inst.cfg │ │ │ ├── cartesio_0.8_nylon_coarse.inst.cfg │ │ │ ├── cartesio_0.8_nylon_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_nylon_high.inst.cfg │ │ │ └── cartesio_0.8_nylon_normal.inst.cfg │ │ ├── pc │ │ │ ├── cartesio_0.25_pc_high.inst.cfg │ │ │ ├── cartesio_0.25_pc_normal.inst.cfg │ │ │ ├── cartesio_0.4_pc_high.inst.cfg │ │ │ ├── cartesio_0.4_pc_normal.inst.cfg │ │ │ ├── cartesio_0.8_pc_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pc_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pc_high.inst.cfg │ │ │ └── cartesio_0.8_pc_normal.inst.cfg │ │ ├── petg │ │ │ ├── cartesio_0.25_petg_high.inst.cfg │ │ │ ├── cartesio_0.25_petg_normal.inst.cfg │ │ │ ├── cartesio_0.4_petg_high.inst.cfg │ │ │ ├── cartesio_0.4_petg_normal.inst.cfg │ │ │ ├── cartesio_0.8_petg_coarse.inst.cfg │ │ │ ├── cartesio_0.8_petg_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_petg_high.inst.cfg │ │ │ └── cartesio_0.8_petg_normal.inst.cfg │ │ ├── pla │ │ │ ├── cartesio_0.25_pla_high.inst.cfg │ │ │ ├── cartesio_0.25_pla_normal.inst.cfg │ │ │ ├── cartesio_0.4_pla_high.inst.cfg │ │ │ ├── cartesio_0.4_pla_normal.inst.cfg │ │ │ ├── cartesio_0.8_pla_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pla_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pla_high.inst.cfg │ │ │ └── cartesio_0.8_pla_normal.inst.cfg │ │ └── pva │ │ │ ├── cartesio_0.25_pva_high.inst.cfg │ │ │ ├── cartesio_0.25_pva_normal.inst.cfg │ │ │ ├── cartesio_0.4_pva_high.inst.cfg │ │ │ ├── cartesio_0.4_pva_normal.inst.cfg │ │ │ ├── cartesio_0.8_pva_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pva_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pva_high.inst.cfg │ │ │ └── cartesio_0.8_pva_normal.inst.cfg │ ├── coarse.inst.cfg │ ├── crazy3dprint │ │ ├── abs │ │ │ ├── crazy3dprint_0.40_abs_coarse.inst.cfg │ │ │ ├── crazy3dprint_0.40_abs_draft.inst.cfg │ │ │ ├── crazy3dprint_0.40_abs_fine.inst.cfg │ │ │ └── crazy3dprint_0.40_abs_normal.inst.cfg │ │ ├── crazy3dprint_global_0.10_fine.inst.cfg │ │ ├── crazy3dprint_global_0.20_normal.inst.cfg │ │ ├── crazy3dprint_global_0.30_draft.inst.cfg │ │ ├── crazy3dprint_global_0.40_coarse.inst.cfg │ │ └── pla │ │ │ ├── crazy3dprint_0.40_pla_coarse.inst.cfg │ │ │ ├── crazy3dprint_0.40_pla_draft.inst.cfg │ │ │ ├── crazy3dprint_0.40_pla_fine.inst.cfg │ │ │ └── crazy3dprint_0.40_pla_normal.inst.cfg │ ├── creality │ │ └── base │ │ │ ├── base_0.2_ABS_super.inst.cfg │ │ │ ├── base_0.2_ABS_ultra.inst.cfg │ │ │ ├── base_0.2_PETG_super.inst.cfg │ │ │ ├── base_0.2_PETG_ultra.inst.cfg │ │ │ ├── base_0.2_PLA_super.inst.cfg │ │ │ ├── base_0.2_PLA_ultra.inst.cfg │ │ │ ├── base_0.3_ABS_adaptive.inst.cfg │ │ │ ├── base_0.3_ABS_low.inst.cfg │ │ │ ├── base_0.3_ABS_standard.inst.cfg │ │ │ ├── base_0.3_ABS_super.inst.cfg │ │ │ ├── base_0.3_PETG_adaptive.inst.cfg │ │ │ ├── base_0.3_PETG_low.inst.cfg │ │ │ ├── base_0.3_PETG_standard.inst.cfg │ │ │ ├── base_0.3_PETG_super.inst.cfg │ │ │ ├── base_0.3_PLA_adaptive.inst.cfg │ │ │ ├── base_0.3_PLA_low.inst.cfg │ │ │ ├── base_0.3_PLA_standard.inst.cfg │ │ │ ├── base_0.3_PLA_super.inst.cfg │ │ │ ├── base_0.3_TPU_adaptive.inst.cfg │ │ │ ├── base_0.3_TPU_standard.inst.cfg │ │ │ ├── base_0.3_TPU_super.inst.cfg │ │ │ ├── base_0.4_ABS_adaptive.inst.cfg │ │ │ ├── base_0.4_ABS_low.inst.cfg │ │ │ ├── base_0.4_ABS_standard.inst.cfg │ │ │ ├── base_0.4_ABS_super.inst.cfg │ │ │ ├── base_0.4_PETG_adaptive.inst.cfg │ │ │ ├── base_0.4_PETG_low.inst.cfg │ │ │ ├── base_0.4_PETG_standard.inst.cfg │ │ │ ├── base_0.4_PETG_super.inst.cfg │ │ │ ├── base_0.4_PLA_adaptive.inst.cfg │ │ │ ├── base_0.4_PLA_low.inst.cfg │ │ │ ├── base_0.4_PLA_standard.inst.cfg │ │ │ ├── base_0.4_PLA_super.inst.cfg │ │ │ ├── base_0.4_TPU_adaptive.inst.cfg │ │ │ ├── base_0.4_TPU_standard.inst.cfg │ │ │ ├── base_0.4_TPU_super.inst.cfg │ │ │ ├── base_0.5_ABS_adaptive.inst.cfg │ │ │ ├── base_0.5_ABS_low.inst.cfg │ │ │ ├── base_0.5_ABS_standard.inst.cfg │ │ │ ├── base_0.5_ABS_super.inst.cfg │ │ │ ├── base_0.5_PETG_adaptive.inst.cfg │ │ │ ├── base_0.5_PETG_low.inst.cfg │ │ │ ├── base_0.5_PETG_standard.inst.cfg │ │ │ ├── base_0.5_PETG_super.inst.cfg │ │ │ ├── base_0.5_PLA_adaptive.inst.cfg │ │ │ ├── base_0.5_PLA_low.inst.cfg │ │ │ ├── base_0.5_PLA_standard.inst.cfg │ │ │ ├── base_0.5_PLA_super.inst.cfg │ │ │ ├── base_0.5_TPU_adaptive.inst.cfg │ │ │ ├── base_0.5_TPU_standard.inst.cfg │ │ │ ├── base_0.5_TPU_super.inst.cfg │ │ │ ├── base_0.6_ABS_standard.inst.cfg │ │ │ ├── base_0.6_PETG_standard.inst.cfg │ │ │ ├── base_0.6_PLA_draft.inst.cfg │ │ │ ├── base_0.6_PLA_low.inst.cfg │ │ │ ├── base_0.6_PLA_standard.inst.cfg │ │ │ ├── base_0.6_TPU_standard.inst.cfg │ │ │ ├── base_0.8_ABS_draft.inst.cfg │ │ │ ├── base_0.8_PETG_draft.inst.cfg │ │ │ ├── base_0.8_PLA_draft.inst.cfg │ │ │ ├── base_0.8_TPU_draft.inst.cfg │ │ │ ├── base_1.0_ABS_draft.inst.cfg │ │ │ ├── base_1.0_PETG_draft.inst.cfg │ │ │ ├── base_1.0_PLA_draft.inst.cfg │ │ │ ├── base_1.0_TPU_draft.inst.cfg │ │ │ ├── base_global_adaptive.inst.cfg │ │ │ ├── base_global_draft.inst.cfg │ │ │ ├── base_global_low.inst.cfg │ │ │ ├── base_global_standard.inst.cfg │ │ │ ├── base_global_super.inst.cfg │ │ │ └── base_global_ultra.inst.cfg │ ├── dagoma │ │ ├── dagoma_discoeasy200_bicolor_pla_fast.inst.cfg │ │ ├── dagoma_discoeasy200_bicolor_pla_fine.inst.cfg │ │ ├── dagoma_discoeasy200_bicolor_pla_standard.inst.cfg │ │ ├── dagoma_discoeasy200_pla_fast.inst.cfg │ │ ├── dagoma_discoeasy200_pla_fine.inst.cfg │ │ ├── dagoma_discoeasy200_pla_standard.inst.cfg │ │ ├── dagoma_discoultimate_bicolor_pla_fast.inst.cfg │ │ ├── dagoma_discoultimate_bicolor_pla_fine.inst.cfg │ │ ├── dagoma_discoultimate_bicolor_pla_standard.inst.cfg │ │ ├── dagoma_discoultimate_pla_fast.inst.cfg │ │ ├── dagoma_discoultimate_pla_fine.inst.cfg │ │ ├── dagoma_discoultimate_pla_standard.inst.cfg │ │ ├── dagoma_magis_pla_fast.inst.cfg │ │ ├── dagoma_magis_pla_fine.inst.cfg │ │ ├── dagoma_magis_pla_standard.inst.cfg │ │ ├── dagoma_neva_pla_fast.inst.cfg │ │ ├── dagoma_neva_pla_fine.inst.cfg │ │ ├── dagoma_neva_pla_standard.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.05.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.1.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.15.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.2.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.3.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.4.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.6.inst.cfg │ │ ├── dagoma_pro_430_bowden_global_h0.8.inst.cfg │ │ ├── dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.05.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.1.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.15.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.2.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.3.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.4.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.6.inst.cfg │ │ ├── dagoma_pro_430_directdrive_global_h0.8.inst.cfg │ │ ├── dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg │ │ ├── dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.05.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.1.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.15.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.2.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.3.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.4.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.6.inst.cfg │ │ ├── dagoma_pro_430_dual_global_h0.8.inst.cfg │ │ ├── dagoma_sigma_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_sigma_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_sigma_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_sigma_0.8_pla_h0.6inst.cfg │ │ ├── dagoma_sigma_0.8_pla_h0.8.inst.cfg │ │ ├── dagoma_sigma_global_h0.1.inst.cfg │ │ ├── dagoma_sigma_global_h0.2.inst.cfg │ │ ├── dagoma_sigma_global_h0.3.inst.cfg │ │ ├── dagoma_sigma_global_h0.4.inst.cfg │ │ ├── dagoma_sigma_global_h0.6.inst.cfg │ │ ├── dagoma_sigma_global_h0.8.inst.cfg │ │ ├── dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_sigma_pro_dual_global_h0.1.inst.cfg │ │ ├── dagoma_sigma_pro_dual_global_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_dual_global_h0.3.inst.cfg │ │ ├── dagoma_sigma_pro_dual_global_h0.4.inst.cfg │ │ ├── dagoma_sigma_pro_dual_global_h0.6.inst.cfg │ │ ├── dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg │ │ ├── dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg │ │ ├── dagoma_sigma_pro_global_h0.1.inst.cfg │ │ ├── dagoma_sigma_pro_global_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_global_h0.3.inst.cfg │ │ ├── dagoma_sigma_pro_global_h0.4.inst.cfg │ │ ├── dagoma_sigma_pro_global_h0.6.inst.cfg │ │ ├── dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg │ │ ├── dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg │ │ ├── dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg │ │ ├── dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg │ │ └── dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg │ ├── deltacomb │ │ ├── ABS │ │ │ ├── deltacomb_DBE0.25_ABS_A.inst.cfg │ │ │ ├── deltacomb_DBE0.25_ABS_B.inst.cfg │ │ │ ├── deltacomb_DBE0.25_ABS_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_A.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_ABS_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_ABS_C.inst.cfg │ │ │ ├── deltacomb_DBE0.60_ABS_D.inst.cfg │ │ │ ├── deltacomb_DBE0.60_ABS_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_ABS_F.inst.cfg │ │ │ ├── deltacomb_FBE0.25_ABS_A.inst.cfg │ │ │ ├── deltacomb_FBE0.25_ABS_B.inst.cfg │ │ │ ├── deltacomb_FBE0.25_ABS_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_A.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_ABS_E.inst.cfg │ │ │ ├── deltacomb_FBE0.60_ABS_C.inst.cfg │ │ │ ├── deltacomb_FBE0.60_ABS_D.inst.cfg │ │ │ ├── deltacomb_FBE0.60_ABS_E.inst.cfg │ │ │ ├── deltacomb_FBE0.60_ABS_F.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_ABS_D.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_ABS_E.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_ABS_F.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_ABS_G.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_ABS_D.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_ABS_E.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_ABS_F.inst.cfg │ │ │ └── deltacomb_VFBE0.80_ABS_G.inst.cfg │ │ ├── PETG │ │ │ ├── deltacomb_DBE0.40_PETG_A.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PETG_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PETG_C.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PETG_D.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PETG_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PETG_F.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_A.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PETG_E.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PETG_C.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PETG_D.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PETG_E.inst.cfg │ │ │ └── deltacomb_FBE0.60_PETG_F.inst.cfg │ │ ├── PLA │ │ │ ├── deltacomb_DBE0.25_PLA_A.inst.cfg │ │ │ ├── deltacomb_DBE0.25_PLA_B.inst.cfg │ │ │ ├── deltacomb_DBE0.25_PLA_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_A.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PLA_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PLA_C.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PLA_D.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PLA_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PLA_F.inst.cfg │ │ │ ├── deltacomb_FBE0.25_PLA_A.inst.cfg │ │ │ ├── deltacomb_FBE0.25_PLA_B.inst.cfg │ │ │ ├── deltacomb_FBE0.25_PLA_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_A.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PLA_E.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PLA_C.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PLA_D.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PLA_E.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PLA_F.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PLA_D.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PLA_E.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PLA_F.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PLA_G.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_PLA_D.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_PLA_E.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_PLA_F.inst.cfg │ │ │ └── deltacomb_VFBE0.80_PLA_G.inst.cfg │ │ ├── PVA │ │ │ ├── deltacomb_DBE0.40_PVA_A.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PVA_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PVA_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PVA_D.inst.cfg │ │ │ ├── deltacomb_DBE0.40_PVA_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PVA_C.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PVA_D.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PVA_E.inst.cfg │ │ │ ├── deltacomb_DBE0.60_PVA_F.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PVA_A.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PVA_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PVA_C.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PVA_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_PVA_E.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PVA_C.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PVA_D.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PVA_E.inst.cfg │ │ │ ├── deltacomb_FBE0.60_PVA_F.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PVA_D.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PVA_E.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PVA_F.inst.cfg │ │ │ ├── deltacomb_VDBE0.80_PVA_G.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_PVA_D.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_PVA_E.inst.cfg │ │ │ ├── deltacomb_VFBE0.80_PVA_F.inst.cfg │ │ │ └── deltacomb_VFBE0.80_PVA_G.inst.cfg │ │ ├── TPU │ │ │ ├── deltacomb_DBE0.40_TPU_B.inst.cfg │ │ │ ├── deltacomb_DBE0.40_TPU_C.inst.cfg │ │ │ ├── deltacomb_DBE0.40_TPU_D.inst.cfg │ │ │ ├── deltacomb_FBE0.40_TPU_B.inst.cfg │ │ │ ├── deltacomb_FBE0.40_TPU_C.inst.cfg │ │ │ └── deltacomb_FBE0.40_TPU_D.inst.cfg │ │ ├── deltacomb_global_A.inst.cfg │ │ ├── deltacomb_global_B.inst.cfg │ │ ├── deltacomb_global_C.inst.cfg │ │ ├── deltacomb_global_D.inst.cfg │ │ ├── deltacomb_global_E.inst.cfg │ │ ├── deltacomb_global_F.inst.cfg │ │ └── deltacomb_global_G.inst.cfg │ ├── diy220 │ │ ├── diy220_draft.inst.cfg │ │ ├── diy220_fast.inst.cfg │ │ ├── diy220_high.inst.cfg │ │ └── diy220_normal.inst.cfg │ ├── draft.inst.cfg │ ├── elegoo │ │ ├── base │ │ │ ├── abs │ │ │ │ └── nozzle_0_40 │ │ │ │ │ ├── elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ │ ├── elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ │ ├── elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ │ └── elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── asa │ │ │ │ └── nozzle_0_40 │ │ │ │ │ ├── elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ │ ├── elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ │ ├── elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ │ └── elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── elegoo_layer_0.05.inst.cfg │ │ │ ├── elegoo_layer_0.10.inst.cfg │ │ │ ├── elegoo_layer_0.15.inst.cfg │ │ │ ├── elegoo_layer_0.20.inst.cfg │ │ │ ├── elegoo_layer_0.30.inst.cfg │ │ │ ├── elegoo_layer_0.40.inst.cfg │ │ │ ├── elegoo_layer_0.60.inst.cfg │ │ │ ├── petg │ │ │ │ └── nozzle_0_40 │ │ │ │ │ ├── elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ │ ├── elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ │ ├── elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ │ └── elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── pla │ │ │ │ ├── nozzle_0_20 │ │ │ │ │ ├── elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg │ │ │ │ │ └── elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg │ │ │ │ ├── nozzle_0_40 │ │ │ │ │ ├── elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ │ ├── elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ │ ├── elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ │ └── elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg │ │ │ │ ├── nozzle_0_60 │ │ │ │ │ ├── elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg │ │ │ │ │ ├── elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg │ │ │ │ │ ├── elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg │ │ │ │ │ └── elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg │ │ │ │ └── nozzle_0_80 │ │ │ │ │ ├── elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg │ │ │ │ │ ├── elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg │ │ │ │ │ └── elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg │ │ │ └── tpu │ │ │ │ └── nozzle_0_40 │ │ │ │ ├── elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ └── elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg │ │ └── neptune_4 │ │ │ ├── abs │ │ │ └── nozzle_0_40 │ │ │ │ ├── elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ └── elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── asa │ │ │ └── nozzle_0_40 │ │ │ │ ├── elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ └── elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── elegoo_n4_layer_0.05.inst.cfg │ │ │ ├── elegoo_n4_layer_0.10.inst.cfg │ │ │ ├── elegoo_n4_layer_0.15.inst.cfg │ │ │ ├── elegoo_n4_layer_0.20.inst.cfg │ │ │ ├── elegoo_n4_layer_0.30.inst.cfg │ │ │ ├── elegoo_n4_layer_0.40.inst.cfg │ │ │ ├── elegoo_n4_layer_0.60.inst.cfg │ │ │ ├── petg │ │ │ └── nozzle_0_40 │ │ │ │ ├── elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ └── elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── pla │ │ │ └── nozzle_0_40 │ │ │ │ ├── elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ └── elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg │ │ │ └── tpu │ │ │ └── nozzle_0_40 │ │ │ ├── elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg │ │ │ ├── elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg │ │ │ ├── elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg │ │ │ └── elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg │ ├── elegoo_neptune_2 │ │ ├── elegoo_neptune_2_draft.inst.cfg │ │ ├── elegoo_neptune_2_fine.inst.cfg │ │ └── elegoo_neptune_2_normal.inst.cfg │ ├── elegoo_neptune_2D │ │ ├── elegoo_neptune_2D_draft.inst.cfg │ │ ├── elegoo_neptune_2D_fine.inst.cfg │ │ └── elegoo_neptune_2D_normal.inst.cfg │ ├── eryone_er20 │ │ ├── eryone_er20_draft.inst.cfg │ │ ├── eryone_er20_high.inst.cfg │ │ └── eryone_er20_normal.inst.cfg │ ├── eryone_thinker │ │ ├── eryone_thinker_extra_fast.inst.cfg │ │ ├── eryone_thinker_fast.inst.cfg │ │ ├── eryone_thinker_fine.inst.cfg │ │ ├── eryone_thinker_high.inst.cfg │ │ └── eryone_thinker_normal.inst.cfg │ ├── extra_coarse.inst.cfg │ ├── extra_fast.inst.cfg │ ├── fabtotum │ │ ├── fabtotum_abs_fast.inst.cfg │ │ ├── fabtotum_abs_high.inst.cfg │ │ ├── fabtotum_abs_normal.inst.cfg │ │ ├── fabtotum_nylon_fast.inst.cfg │ │ ├── fabtotum_nylon_high.inst.cfg │ │ ├── fabtotum_nylon_normal.inst.cfg │ │ ├── fabtotum_pla_fast.inst.cfg │ │ ├── fabtotum_pla_high.inst.cfg │ │ ├── fabtotum_pla_normal.inst.cfg │ │ ├── fabtotum_tpu_fast.inst.cfg │ │ ├── fabtotum_tpu_high.inst.cfg │ │ └── fabtotum_tpu_normal.inst.cfg │ ├── fabxpro │ │ ├── fabxpro_abs_draft.inst.cfg │ │ ├── fabxpro_abs_fine.inst.cfg │ │ ├── fabxpro_abs_normal.inst.cfg │ │ ├── fabxpro_asa_draft.inst.cfg │ │ ├── fabxpro_asa_fine.inst.cfg │ │ ├── fabxpro_asa_normal.inst.cfg │ │ ├── fabxpro_hips_draft.inst.cfg │ │ ├── fabxpro_hips_fine.inst.cfg │ │ ├── fabxpro_hips_normal.inst.cfg │ │ ├── fabxpro_nylon_draft.inst.cfg │ │ ├── fabxpro_nylon_fine.inst.cfg │ │ ├── fabxpro_nylon_normal.inst.cfg │ │ ├── fabxpro_petg_draft.inst.cfg │ │ ├── fabxpro_petg_fine.inst.cfg │ │ ├── fabxpro_petg_normal.inst.cfg │ │ ├── fabxpro_pla_draft.inst.cfg │ │ ├── fabxpro_pla_fine.inst.cfg │ │ ├── fabxpro_pla_normal.inst.cfg │ │ ├── fabxpro_tpe_draft.inst.cfg │ │ ├── fabxpro_tpe_fine.inst.cfg │ │ └── fabxpro_tpe_normal.inst.cfg │ ├── fast.inst.cfg │ ├── flashforge │ │ ├── abs │ │ │ ├── flashforge_0.20_abs_super.inst.cfg │ │ │ ├── flashforge_0.20_abs_ultra.inst.cfg │ │ │ ├── flashforge_0.30_abs_adaptive.inst.cfg │ │ │ ├── flashforge_0.30_abs_standard.inst.cfg │ │ │ ├── flashforge_0.30_abs_super.inst.cfg │ │ │ ├── flashforge_0.40_abs_adaptive.inst.cfg │ │ │ ├── flashforge_0.40_abs_draft.inst.cfg │ │ │ ├── flashforge_0.40_abs_low.inst.cfg │ │ │ ├── flashforge_0.40_abs_standard.inst.cfg │ │ │ ├── flashforge_0.40_abs_super.inst.cfg │ │ │ ├── flashforge_0.50_abs_adaptive.inst.cfg │ │ │ ├── flashforge_0.50_abs_coarse.inst.cfg │ │ │ ├── flashforge_0.50_abs_draft.inst.cfg │ │ │ ├── flashforge_0.50_abs_low.inst.cfg │ │ │ ├── flashforge_0.50_abs_standard.inst.cfg │ │ │ ├── flashforge_0.60_abs_coarse.inst.cfg │ │ │ ├── flashforge_0.60_abs_draft.inst.cfg │ │ │ ├── flashforge_0.60_abs_extra_coarse.inst.cfg │ │ │ ├── flashforge_0.60_abs_standard.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.3_fine.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.3_vfine.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.4_fine.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.4_vfine.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.6_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_abs_0.6_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.3_fine.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.3_vfine.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.4_fine.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.4_vfine.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_abs_0.6_fast.inst.cfg │ │ │ └── flashforge_adventurer4_abs_0.6_vfast.inst.cfg │ │ ├── asa │ │ │ ├── flashforge_adventurer4_asa_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer4_asa_0.4_fine.inst.cfg │ │ │ └── flashforge_adventurer4_asa_0.4_normal.inst.cfg │ │ ├── flashforge_adventurer3_draft.inst.cfg │ │ ├── flashforge_adventurer3_fast.inst.cfg │ │ ├── flashforge_adventurer3_fine.inst.cfg │ │ ├── flashforge_adventurer3_normal.inst.cfg │ │ ├── flashforge_adventurer3_vfast.inst.cfg │ │ ├── flashforge_adventurer3_vfine.inst.cfg │ │ ├── flashforge_adventurer4_draft.inst.cfg │ │ ├── flashforge_adventurer4_fast.inst.cfg │ │ ├── flashforge_adventurer4_fine.inst.cfg │ │ ├── flashforge_adventurer4_normal.inst.cfg │ │ ├── flashforge_adventurer4_vfast.inst.cfg │ │ ├── flashforge_adventurer4_vfine.inst.cfg │ │ ├── flashforge_global_0.08_ultra.inst.cfg │ │ ├── flashforge_global_0.12_super.inst.cfg │ │ ├── flashforge_global_0.16_adaptive.inst.cfg │ │ ├── flashforge_global_0.20_standard.inst.cfg │ │ ├── flashforge_global_0.28_low.inst.cfg │ │ ├── flashforge_global_0.32_draft.inst.cfg │ │ ├── flashforge_global_0.40_coarse.inst.cfg │ │ ├── flashforge_global_0.48_extra_coarse.inst.cfg │ │ ├── pc │ │ │ ├── flashforge_adventurer3_pc_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_pc_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_pc_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer3_pc_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer3_pc_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_pc_0.6_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_pc_0.6_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_pc_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_pc_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer4_pc_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer4_pc_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_pc_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_pc_0.6_fast.inst.cfg │ │ │ └── flashforge_adventurer4_pc_0.6_vfast.inst.cfg │ │ ├── petg │ │ │ ├── flashforge_0.2_petg_super.inst.cfg │ │ │ ├── flashforge_0.2_petg_ultra.inst.cfg │ │ │ ├── flashforge_0.30_petg_adaptive.inst.cfg │ │ │ ├── flashforge_0.30_petg_standard.inst.cfg │ │ │ ├── flashforge_0.30_petg_super.inst.cfg │ │ │ ├── flashforge_0.40_petg_adaptive.inst.cfg │ │ │ ├── flashforge_0.40_petg_draft.inst.cfg │ │ │ ├── flashforge_0.40_petg_low.inst.cfg │ │ │ ├── flashforge_0.40_petg_standard.inst.cfg │ │ │ ├── flashforge_0.40_petg_super.inst.cfg │ │ │ ├── flashforge_0.50_petg_adaptive.inst.cfg │ │ │ ├── flashforge_0.50_petg_coarse.inst.cfg │ │ │ ├── flashforge_0.50_petg_draft.inst.cfg │ │ │ ├── flashforge_0.50_petg_low.inst.cfg │ │ │ ├── flashforge_0.50_petg_standard.inst.cfg │ │ │ ├── flashforge_0.60_petg_draft.inst.cfg │ │ │ ├── flashforge_0.60_petg_extra_coarse.inst.cfg │ │ │ ├── flashforge_0.60_petg_standard.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.3_fine.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.3_vfine.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.4_fine.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.4_vfine.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.6_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_petg_0.6_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.3_fine.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.3_vfine.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.4_fine.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.4_vfine.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_petg_0.6_fast.inst.cfg │ │ │ └── flashforge_adventurer4_petg_0.6_vfast.inst.cfg │ │ ├── pla │ │ │ ├── flashforge_0.20_pla_super.inst.cfg │ │ │ ├── flashforge_0.20_pla_ultra.inst.cfg │ │ │ ├── flashforge_0.30_pla_adaptive.inst.cfg │ │ │ ├── flashforge_0.30_pla_standard.inst.cfg │ │ │ ├── flashforge_0.30_pla_super.inst.cfg │ │ │ ├── flashforge_0.40_pla_adaptive.inst.cfg │ │ │ ├── flashforge_0.40_pla_draft.inst.cfg │ │ │ ├── flashforge_0.40_pla_low.inst.cfg │ │ │ ├── flashforge_0.40_pla_standard.inst.cfg │ │ │ ├── flashforge_0.40_pla_super.inst.cfg │ │ │ ├── flashforge_0.50_pla_adaptive.inst.cfg │ │ │ ├── flashforge_0.50_pla_coarse.inst.cfg │ │ │ ├── flashforge_0.50_pla_draft.inst.cfg │ │ │ ├── flashforge_0.50_pla_low.inst.cfg │ │ │ ├── flashforge_0.50_pla_standard.inst.cfg │ │ │ ├── flashforge_0.60_pla_draft.inst.cfg │ │ │ ├── flashforge_0.60_pla_extra Coarse.inst.cfg │ │ │ ├── flashforge_0.60_pla_standard.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.3_fine.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.3_vfine.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.4_fine.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.4_vfine.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.6_fast.inst.cfg │ │ │ ├── flashforge_adventurer3_pla_0.6_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.3_fine.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.3_vfine.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.4_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.4_fast.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.4_fine.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.4_normal.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.4_vfast.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.4_vfine.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.6_draft.inst.cfg │ │ │ ├── flashforge_adventurer4_pla_0.6_fast.inst.cfg │ │ │ └── flashforge_adventurer4_pla_0.6_vfast.inst.cfg │ │ └── tpu │ │ │ ├── flashforge_0.40_tpu_adaptive.inst.cfg │ │ │ ├── flashforge_0.40_tpu_draft.inst.cfg │ │ │ ├── flashforge_0.40_tpu_low.inst.cfg │ │ │ ├── flashforge_0.40_tpu_standard.inst.cfg │ │ │ ├── flashforge_0.40_tpu_super.inst.cfg │ │ │ ├── flashforge_0.50_tpu_adaptive.inst.cfg │ │ │ ├── flashforge_0.50_tpu_draft.inst.cfg │ │ │ ├── flashforge_0.50_tpu_low.inst.cfg │ │ │ ├── flashforge_0.50_tpu_standard.inst.cfg │ │ │ ├── flashforge_0.60_tpu_draft.inst.cfg │ │ │ ├── flashforge_0.60_tpu_low.inst.cfg │ │ │ └── flashforge_0.60_tpu_standard.inst.cfg │ ├── flsun_sr │ │ ├── flsun_sr_fine.inst.cfg │ │ └── flsun_sr_normal.inst.cfg │ ├── flsun_v400 │ │ └── flsun_v400_normal.inst.cfg │ ├── flyingbear │ │ ├── abs │ │ │ ├── flyingbear_0.25_abs_super.inst.cfg │ │ │ ├── flyingbear_0.25_abs_ultra.inst.cfg │ │ │ ├── flyingbear_0.30_abs_adaptive.inst.cfg │ │ │ ├── flyingbear_0.30_abs_standard.inst.cfg │ │ │ ├── flyingbear_0.30_abs_super.inst.cfg │ │ │ ├── flyingbear_0.40_abs_adaptive.inst.cfg │ │ │ ├── flyingbear_0.40_abs_low.inst.cfg │ │ │ ├── flyingbear_0.40_abs_standard.inst.cfg │ │ │ ├── flyingbear_0.40_abs_super.inst.cfg │ │ │ ├── flyingbear_0.50_abs_adaptive.inst.cfg │ │ │ ├── flyingbear_0.50_abs_draft.inst.cfg │ │ │ ├── flyingbear_0.50_abs_low.inst.cfg │ │ │ ├── flyingbear_0.50_abs_standard.inst.cfg │ │ │ ├── flyingbear_0.60_abs_draft.inst.cfg │ │ │ ├── flyingbear_0.60_abs_low.inst.cfg │ │ │ ├── flyingbear_0.60_abs_standard.inst.cfg │ │ │ ├── flyingbear_0.80_abs_coarse.inst.cfg │ │ │ └── flyingbear_0.80_abs_draft.inst.cfg │ │ ├── flyingbear_global_0.08_ultra.inst.cfg │ │ ├── flyingbear_global_0.12_super.inst.cfg │ │ ├── flyingbear_global_0.16_adaptive.inst.cfg │ │ ├── flyingbear_global_0.20_standard.inst.cfg │ │ ├── flyingbear_global_0.28_low.inst.cfg │ │ ├── flyingbear_global_0.32_draft.inst.cfg │ │ ├── flyingbear_global_0.40_coarse.inst.cfg │ │ ├── hips │ │ │ ├── flyingbear_0.25_hips_super.inst.cfg │ │ │ ├── flyingbear_0.25_hips_ultra.inst.cfg │ │ │ ├── flyingbear_0.30_hips_adaptive.inst.cfg │ │ │ ├── flyingbear_0.30_hips_standard.inst.cfg │ │ │ ├── flyingbear_0.30_hips_super.inst.cfg │ │ │ ├── flyingbear_0.40_hips_adaptive.inst.cfg │ │ │ ├── flyingbear_0.40_hips_low.inst.cfg │ │ │ ├── flyingbear_0.40_hips_standard.inst.cfg │ │ │ ├── flyingbear_0.40_hips_super.inst.cfg │ │ │ ├── flyingbear_0.50_hips_adaptive.inst.cfg │ │ │ ├── flyingbear_0.50_hips_draft.inst.cfg │ │ │ ├── flyingbear_0.50_hips_low.inst.cfg │ │ │ ├── flyingbear_0.50_hips_standard.inst.cfg │ │ │ ├── flyingbear_0.60_hips_draft.inst.cfg │ │ │ ├── flyingbear_0.60_hips_low.inst.cfg │ │ │ ├── flyingbear_0.60_hips_standard.inst.cfg │ │ │ ├── flyingbear_0.80_hips_coarse.inst.cfg │ │ │ └── flyingbear_0.80_hips_draft.inst.cfg │ │ ├── petg │ │ │ ├── flyingbear_0.25_petg_super.inst.cfg │ │ │ ├── flyingbear_0.25_petg_ultra.inst.cfg │ │ │ ├── flyingbear_0.30_petg_adaptive.inst.cfg │ │ │ ├── flyingbear_0.30_petg_standard.inst.cfg │ │ │ ├── flyingbear_0.30_petg_super.inst.cfg │ │ │ ├── flyingbear_0.40_petg_adaptive.inst.cfg │ │ │ ├── flyingbear_0.40_petg_low.inst.cfg │ │ │ ├── flyingbear_0.40_petg_standard.inst.cfg │ │ │ ├── flyingbear_0.40_petg_super.inst.cfg │ │ │ ├── flyingbear_0.50_petg_adaptive.inst.cfg │ │ │ ├── flyingbear_0.50_petg_draft.inst.cfg │ │ │ ├── flyingbear_0.50_petg_low.inst.cfg │ │ │ ├── flyingbear_0.50_petg_standard.inst.cfg │ │ │ ├── flyingbear_0.60_petg_draft.inst.cfg │ │ │ ├── flyingbear_0.60_petg_low.inst.cfg │ │ │ ├── flyingbear_0.60_petg_standard.inst.cfg │ │ │ ├── flyingbear_0.80_petg_coarse.inst.cfg │ │ │ └── flyingbear_0.80_petg_draft.inst.cfg │ │ ├── pla │ │ │ ├── flyingbear_0.25_pla_super.inst.cfg │ │ │ ├── flyingbear_0.25_pla_ultra.inst.cfg │ │ │ ├── flyingbear_0.30_pla_adaptive.inst.cfg │ │ │ ├── flyingbear_0.30_pla_standard.inst.cfg │ │ │ ├── flyingbear_0.30_pla_super.inst.cfg │ │ │ ├── flyingbear_0.40_pla_adaptive.inst.cfg │ │ │ ├── flyingbear_0.40_pla_low.inst.cfg │ │ │ ├── flyingbear_0.40_pla_standard.inst.cfg │ │ │ ├── flyingbear_0.40_pla_super.inst.cfg │ │ │ ├── flyingbear_0.50_pla_adaptive.inst.cfg │ │ │ ├── flyingbear_0.50_pla_draft.inst.cfg │ │ │ ├── flyingbear_0.50_pla_low.inst.cfg │ │ │ ├── flyingbear_0.50_pla_standard.inst.cfg │ │ │ ├── flyingbear_0.60_pla_draft.inst.cfg │ │ │ ├── flyingbear_0.60_pla_low.inst.cfg │ │ │ ├── flyingbear_0.60_pla_standard.inst.cfg │ │ │ ├── flyingbear_0.80_pla_coarse.inst.cfg │ │ │ └── flyingbear_0.80_pla_draft.inst.cfg │ │ ├── plapro │ │ │ ├── flyingbear_0.25_plapro_super.inst.cfg │ │ │ ├── flyingbear_0.25_plapro_ultra.inst.cfg │ │ │ ├── flyingbear_0.30_plapro_adaptive.inst.cfg │ │ │ ├── flyingbear_0.30_plapro_standard.inst.cfg │ │ │ ├── flyingbear_0.30_plapro_super.inst.cfg │ │ │ ├── flyingbear_0.40_plapro_adaptive.inst.cfg │ │ │ ├── flyingbear_0.40_plapro_low.inst.cfg │ │ │ ├── flyingbear_0.40_plapro_standard.inst.cfg │ │ │ ├── flyingbear_0.40_plapro_super.inst.cfg │ │ │ ├── flyingbear_0.50_plapro_adaptive.inst.cfg │ │ │ ├── flyingbear_0.50_plapro_draft.inst.cfg │ │ │ ├── flyingbear_0.50_plapro_low.inst.cfg │ │ │ ├── flyingbear_0.50_plapro_standard.inst.cfg │ │ │ ├── flyingbear_0.60_plapro_draft.inst.cfg │ │ │ ├── flyingbear_0.60_plapro_low.inst.cfg │ │ │ ├── flyingbear_0.60_plapro_standard.inst.cfg │ │ │ ├── flyingbear_0.80_plapro_coarse.inst.cfg │ │ │ └── flyingbear_0.80_plapro_draft.inst.cfg │ │ └── tpu │ │ │ ├── flyingbear_0.40_tpu_adaptive.inst.cfg │ │ │ ├── flyingbear_0.40_tpu_low.inst.cfg │ │ │ ├── flyingbear_0.40_tpu_standard.inst.cfg │ │ │ ├── flyingbear_0.40_tpu_super.inst.cfg │ │ │ ├── flyingbear_0.50_tpu_adaptive.inst.cfg │ │ │ ├── flyingbear_0.50_tpu_draft.inst.cfg │ │ │ ├── flyingbear_0.50_tpu_low.inst.cfg │ │ │ ├── flyingbear_0.50_tpu_standard.inst.cfg │ │ │ ├── flyingbear_0.60_tpu_draft.inst.cfg │ │ │ ├── flyingbear_0.60_tpu_low.inst.cfg │ │ │ ├── flyingbear_0.60_tpu_standard.inst.cfg │ │ │ ├── flyingbear_0.80_tpu_coarse.inst.cfg │ │ │ └── flyingbear_0.80_tpu_draft.inst.cfg │ ├── fusedform │ │ └── base │ │ │ ├── base_PVA_draft.inst.cfg │ │ │ ├── base_PVA_high.inst.cfg │ │ │ ├── base_PVA_normal.inst.cfg │ │ │ ├── base_abs_draft.inst.cfg │ │ │ ├── base_abs_high.inst.cfg │ │ │ ├── base_abs_normal.inst.cfg │ │ │ ├── base_abs_ultra_high.inst.cfg │ │ │ ├── base_draft.inst.cfg │ │ │ ├── base_flex_high.inst.cfg │ │ │ ├── base_flex_normal.inst.cfg │ │ │ ├── base_high.inst.cfg │ │ │ ├── base_hips_draft.inst.cfg │ │ │ ├── base_hips_high.inst.cfg │ │ │ ├── base_hips_normal.inst.cfg │ │ │ ├── base_hips_ultra_high.inst.cfg │ │ │ ├── base_normal.inst.cfg │ │ │ ├── base_nylon_draft.inst.cfg │ │ │ ├── base_nylon_high.inst.cfg │ │ │ ├── base_nylon_normal.inst.cfg │ │ │ ├── base_nylon_ultra_high.inst.cfg │ │ │ ├── base_petg_high.inst.cfg │ │ │ ├── base_petg_normal.inst.cfg │ │ │ ├── base_pla_draft.inst.cfg │ │ │ ├── base_pla_high.inst.cfg │ │ │ ├── base_pla_normal.inst.cfg │ │ │ ├── base_pla_ultra_high.inst.cfg │ │ │ └── base_ultra_high.inst.cfg │ ├── fusion3 │ │ ├── fusion3_0.4_ABS_fine.inst.cfg │ │ ├── fusion3_0.4_ABS_good.inst.cfg │ │ ├── fusion3_0.4_ABS_normal.inst.cfg │ │ ├── fusion3_0.4_ASA_fine.inst.cfg │ │ ├── fusion3_0.4_ASA_good.inst.cfg │ │ ├── fusion3_0.4_ASA_normal.inst.cfg │ │ ├── fusion3_0.4_CPE_normal.inst.cfg │ │ ├── fusion3_0.4_PA_normal.inst.cfg │ │ ├── fusion3_0.4_PC_normal.inst.cfg │ │ ├── fusion3_0.4_PETG_normal.inst.cfg │ │ ├── fusion3_0.4_PLA_fine.inst.cfg │ │ ├── fusion3_0.4_PLA_good.inst.cfg │ │ ├── fusion3_0.4_PLA_normal.inst.cfg │ │ ├── fusion3_0.4_TPU_normal.inst.cfg │ │ ├── fusion3_0.6_ABS_good.inst.cfg │ │ ├── fusion3_0.6_ABS_low.inst.cfg │ │ ├── fusion3_0.6_ASA_good.inst.cfg │ │ ├── fusion3_0.6_ASA_low.inst.cfg │ │ ├── fusion3_0.6_CPE_good.inst.cfg │ │ ├── fusion3_0.6_PA_good.inst.cfg │ │ ├── fusion3_0.6_PC_good.inst.cfg │ │ ├── fusion3_0.6_PETG_good.inst.cfg │ │ ├── fusion3_0.6_PLA_good.inst.cfg │ │ ├── fusion3_0.6_PLA_low.inst.cfg │ │ ├── fusion3_0.6_TPU_good.inst.cfg │ │ ├── fusion3_0.8_ABS_rapid.inst.cfg │ │ ├── fusion3_0.8_ABS_rough.inst.cfg │ │ ├── fusion3_0.8_ASA_rapid.inst.cfg │ │ ├── fusion3_0.8_ASA_rough.inst.cfg │ │ ├── fusion3_0.8_CPE_rapid.inst.cfg │ │ ├── fusion3_0.8_PA_rapid.inst.cfg │ │ ├── fusion3_0.8_PC_rapid.inst.cfg │ │ ├── fusion3_0.8_PETG_rapid.inst.cfg │ │ ├── fusion3_0.8_PLA_rapid.inst.cfg │ │ ├── fusion3_0.8_PLA_rough.inst.cfg │ │ ├── fusion3_0.8_TPU_rapid.inst.cfg │ │ ├── fusion3_global_fine.inst.cfg │ │ ├── fusion3_global_good.inst.cfg │ │ ├── fusion3_global_low.inst.cfg │ │ ├── fusion3_global_normal.inst.cfg │ │ ├── fusion3_global_rapid.inst.cfg │ │ └── fusion3_global_rough.inst.cfg │ ├── geeetech_quality │ │ ├── geeetech_quality_0.2_ABS_super.inst.cfg │ │ ├── geeetech_quality_0.2_ABS_ultra.inst.cfg │ │ ├── geeetech_quality_0.2_PETG_super.inst.cfg │ │ ├── geeetech_quality_0.2_PETG_ultra.inst.cfg │ │ ├── geeetech_quality_0.2_PLA_super.inst.cfg │ │ ├── geeetech_quality_0.2_PLA_ultra.inst.cfg │ │ ├── geeetech_quality_0.3_ABS_adaptive.inst.cfg │ │ ├── geeetech_quality_0.3_ABS_low.inst.cfg │ │ ├── geeetech_quality_0.3_ABS_standard.inst.cfg │ │ ├── geeetech_quality_0.3_ABS_super.inst.cfg │ │ ├── geeetech_quality_0.3_PETG_adaptive.inst.cfg │ │ ├── geeetech_quality_0.3_PETG_low.inst.cfg │ │ ├── geeetech_quality_0.3_PETG_standard.inst.cfg │ │ ├── geeetech_quality_0.3_PETG_super.inst.cfg │ │ ├── geeetech_quality_0.3_PLA_adaptive.inst.cfg │ │ ├── geeetech_quality_0.3_PLA_low.inst.cfg │ │ ├── geeetech_quality_0.3_PLA_standard.inst.cfg │ │ ├── geeetech_quality_0.3_PLA_super.inst.cfg │ │ ├── geeetech_quality_0.3_TPU_adaptive.inst.cfg │ │ ├── geeetech_quality_0.3_TPU_standard.inst.cfg │ │ ├── geeetech_quality_0.3_TPU_super.inst.cfg │ │ ├── geeetech_quality_0.4_ABS_adaptive.inst.cfg │ │ ├── geeetech_quality_0.4_ABS_low.inst.cfg │ │ ├── geeetech_quality_0.4_ABS_standard.inst.cfg │ │ ├── geeetech_quality_0.4_ABS_super.inst.cfg │ │ ├── geeetech_quality_0.4_PETG_adaptive.inst.cfg │ │ ├── geeetech_quality_0.4_PETG_low.inst.cfg │ │ ├── geeetech_quality_0.4_PETG_standard.inst.cfg │ │ ├── geeetech_quality_0.4_PETG_super.inst.cfg │ │ ├── geeetech_quality_0.4_PLA_adaptive.inst.cfg │ │ ├── geeetech_quality_0.4_PLA_low.inst.cfg │ │ ├── geeetech_quality_0.4_PLA_standard.inst.cfg │ │ ├── geeetech_quality_0.4_PLA_super.inst.cfg │ │ ├── geeetech_quality_0.4_TPU_adaptive.inst.cfg │ │ ├── geeetech_quality_0.4_TPU_standard.inst.cfg │ │ ├── geeetech_quality_0.4_TPU_super.inst.cfg │ │ ├── geeetech_quality_0.5_ABS_adaptive.inst.cfg │ │ ├── geeetech_quality_0.5_ABS_low.inst.cfg │ │ ├── geeetech_quality_0.5_ABS_standard.inst.cfg │ │ ├── geeetech_quality_0.5_ABS_super.inst.cfg │ │ ├── geeetech_quality_0.5_PETG_adaptive.inst.cfg │ │ ├── geeetech_quality_0.5_PETG_low.inst.cfg │ │ ├── geeetech_quality_0.5_PETG_standard.inst.cfg │ │ ├── geeetech_quality_0.5_PETG_super.inst.cfg │ │ ├── geeetech_quality_0.5_PLA_adaptive.inst.cfg │ │ ├── geeetech_quality_0.5_PLA_low.inst.cfg │ │ ├── geeetech_quality_0.5_PLA_standard.inst.cfg │ │ ├── geeetech_quality_0.5_PLA_super.inst.cfg │ │ ├── geeetech_quality_0.5_TPU_adaptive.inst.cfg │ │ ├── geeetech_quality_0.5_TPU_standard.inst.cfg │ │ ├── geeetech_quality_0.5_TPU_super.inst.cfg │ │ ├── geeetech_quality_0.6_ABS_standard.inst.cfg │ │ ├── geeetech_quality_0.6_PETG_standard.inst.cfg │ │ ├── geeetech_quality_0.6_PLA_draft.inst.cfg │ │ ├── geeetech_quality_0.6_PLA_low.inst.cfg │ │ ├── geeetech_quality_0.6_PLA_standard.inst.cfg │ │ ├── geeetech_quality_0.6_TPU_standard.inst.cfg │ │ ├── geeetech_quality_0.8_ABS_draft.inst.cfg │ │ ├── geeetech_quality_0.8_PETG_draft.inst.cfg │ │ ├── geeetech_quality_0.8_PLA_draft.inst.cfg │ │ ├── geeetech_quality_0.8_TPU_draft.inst.cfg │ │ ├── geeetech_quality_1.0_ABS_draft.inst.cfg │ │ ├── geeetech_quality_1.0_PETG_draft.inst.cfg │ │ ├── geeetech_quality_1.0_PLA_draft.inst.cfg │ │ ├── geeetech_quality_1.0_TPU_draft.inst.cfg │ │ ├── geeetech_quality_global_adaptive.inst.cfg │ │ ├── geeetech_quality_global_draft.inst.cfg │ │ ├── geeetech_quality_global_low.inst.cfg │ │ ├── geeetech_quality_global_standard.inst.cfg │ │ ├── geeetech_quality_global_super.inst.cfg │ │ └── geeetech_quality_global_ultra.inst.cfg │ ├── gmax15plus │ │ ├── gmax15plus_global_dual_normal.inst.cfg │ │ ├── gmax15plus_global_dual_thick.inst.cfg │ │ ├── gmax15plus_global_dual_thin.inst.cfg │ │ ├── gmax15plus_global_dual_very_thick.inst.cfg │ │ ├── gmax15plus_global_normal.inst.cfg │ │ ├── gmax15plus_global_thick.inst.cfg │ │ ├── gmax15plus_global_thin.inst.cfg │ │ └── gmax15plus_global_very_thick.inst.cfg │ ├── goofoo │ │ ├── abs │ │ │ ├── goofoo_far_0.2_abs_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_abs_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_abs_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_abs_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_abs_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_abs_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_abs_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_abs_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_abs_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_abs_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_abs_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_abs_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_abs_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_abs_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_abs_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_abs_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_abs_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_abs_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_abs_fine.inst.cfg │ │ │ └── goofoo_near_1.0_abs_standard.inst.cfg │ │ ├── asa │ │ │ ├── goofoo_far_0.2_asa_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_asa_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_asa_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_asa_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_asa_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_asa_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_asa_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_asa_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_asa_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_asa_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_asa_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_asa_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_asa_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_asa_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_asa_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_asa_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_asa_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_asa_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_asa_fine.inst.cfg │ │ │ └── goofoo_near_1.0_asa_standard.inst.cfg │ │ ├── goofoo_far_global_0.15_fine.inst.cfg │ │ ├── goofoo_far_global_0.1_efine.inst.cfg │ │ ├── goofoo_far_global_0.20_standard.inst.cfg │ │ ├── goofoo_far_global_0.3_draft.inst.cfg │ │ ├── goofoo_near_global_0.15_fine.inst.cfg │ │ ├── goofoo_near_global_0.1_efine.inst.cfg │ │ ├── goofoo_near_global_0.20_standard.inst.cfg │ │ ├── goofoo_near_global_0.3_draft.inst.cfg │ │ ├── goofoo_open_global_0.15_fine.inst.cfg │ │ ├── goofoo_open_global_0.1_efine.inst.cfg │ │ ├── goofoo_open_global_0.20_standard.inst.cfg │ │ ├── goofoo_open_global_0.3_draft.inst.cfg │ │ ├── goofoo_small_global_0.15_fine.inst.cfg │ │ ├── goofoo_small_global_0.1_efine.inst.cfg │ │ ├── goofoo_small_global_0.20_standard.inst.cfg │ │ ├── goofoo_small_global_0.3_draft.inst.cfg │ │ ├── hips │ │ │ ├── goofoo_far_0.2_hips_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_hips_efine.inst.cfg │ │ │ ├── goofoo_far_0.2_hips_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_hips_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_hips_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_hips_efine.inst.cfg │ │ │ ├── goofoo_far_0.40_hips_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_hips_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_hips_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_hips_efine.inst.cfg │ │ │ ├── goofoo_far_0.6_hips_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_hips_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_hips_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_hips_efine.inst.cfg │ │ │ ├── goofoo_far_0.8_hips_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_hips_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_hips_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_hips_efine.inst.cfg │ │ │ ├── goofoo_far_1.0_hips_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_hips_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_hips_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_hips_efine.inst.cfg │ │ │ ├── goofoo_near_0.2_hips_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_hips_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_hips_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_hips_efine.inst.cfg │ │ │ ├── goofoo_near_0.40_hips_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_hips_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_hips_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_hips_efine.inst.cfg │ │ │ ├── goofoo_near_0.6_hips_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_hips_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_hips_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_hips_efine.inst.cfg │ │ │ ├── goofoo_near_0.8_hips_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_hips_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_hips_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_hips_efine.inst.cfg │ │ │ ├── goofoo_near_1.0_hips_fine.inst.cfg │ │ │ ├── goofoo_near_1.0_hips_standard.inst.cfg │ │ │ ├── goofoo_open_0.2_hips_draft.inst.cfg │ │ │ ├── goofoo_open_0.2_hips_efine.inst.cfg │ │ │ ├── goofoo_open_0.2_hips_fine.inst.cfg │ │ │ ├── goofoo_open_0.2_hips_standard.inst.cfg │ │ │ ├── goofoo_open_0.40_hips_draft.inst.cfg │ │ │ ├── goofoo_open_0.40_hips_efine.inst.cfg │ │ │ ├── goofoo_open_0.40_hips_fine.inst.cfg │ │ │ ├── goofoo_open_0.40_hips_standard.inst.cfg │ │ │ ├── goofoo_open_0.6_hips_draft.inst.cfg │ │ │ ├── goofoo_open_0.6_hips_efine.inst.cfg │ │ │ ├── goofoo_open_0.6_hips_fine.inst.cfg │ │ │ ├── goofoo_open_0.6_hips_standard.inst.cfg │ │ │ ├── goofoo_open_0.8_hips_draft.inst.cfg │ │ │ ├── goofoo_open_0.8_hips_efine.inst.cfg │ │ │ ├── goofoo_open_0.8_hips_fine.inst.cfg │ │ │ ├── goofoo_open_0.8_hips_standard.inst.cfg │ │ │ ├── goofoo_open_1.0_hips_draft.inst.cfg │ │ │ ├── goofoo_open_1.0_hips_efine.inst.cfg │ │ │ ├── goofoo_open_1.0_hips_fine.inst.cfg │ │ │ └── goofoo_open_1.0_hips_standard.inst.cfg │ │ ├── pa │ │ │ ├── goofoo_far_0.2_pa_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_pa_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_pa_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_pa_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_pa_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_pa_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_pa_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_pa_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_pa_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_pa_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_pa_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_pa_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_pa_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_pa_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_pa_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_pa_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_pa_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_pa_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_pa_fine.inst.cfg │ │ │ └── goofoo_near_1.0_pa_standard.inst.cfg │ │ ├── pa_cf │ │ │ ├── goofoo_far_0.2_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_pa_cf_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_pa_cf_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_pa_cf_fine.inst.cfg │ │ │ └── goofoo_near_1.0_pa_cf_standard.inst.cfg │ │ ├── pc │ │ │ ├── goofoo_far_0.2_pc_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_pc_efine.inst.cfg │ │ │ ├── goofoo_far_0.2_pc_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_pc_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_pc_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_pc_efine.inst.cfg │ │ │ ├── goofoo_far_0.40_pc_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_pc_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_pc_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_pc_efine.inst.cfg │ │ │ ├── goofoo_far_0.6_pc_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_pc_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_pc_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_pc_efine.inst.cfg │ │ │ ├── goofoo_far_0.8_pc_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_pc_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_pc_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_pc_efine.inst.cfg │ │ │ ├── goofoo_far_1.0_pc_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_pc_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_pc_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_pc_efine.inst.cfg │ │ │ ├── goofoo_near_0.2_pc_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_pc_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_pc_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_pc_efine.inst.cfg │ │ │ ├── goofoo_near_0.40_pc_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_pc_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_pc_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_pc_efine.inst.cfg │ │ │ ├── goofoo_near_0.6_pc_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_pc_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_pc_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_pc_efine.inst.cfg │ │ │ ├── goofoo_near_0.8_pc_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_pc_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_pc_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_pc_efine.inst.cfg │ │ │ ├── goofoo_near_1.0_pc_fine.inst.cfg │ │ │ └── goofoo_near_1.0_pc_standard.inst.cfg │ │ ├── peek │ │ │ ├── goofoo_far_0.2_peek_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_peek_efine.inst.cfg │ │ │ ├── goofoo_far_0.2_peek_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_peek_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_peek_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_peek_efine.inst.cfg │ │ │ ├── goofoo_far_0.40_peek_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_peek_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_peek_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_peek_efine.inst.cfg │ │ │ ├── goofoo_far_0.6_peek_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_peek_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_peek_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_peek_efine.inst.cfg │ │ │ ├── goofoo_far_0.8_peek_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_peek_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_peek_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_peek_efine.inst.cfg │ │ │ ├── goofoo_far_1.0_peek_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_peek_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_peek_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_peek_efine.inst.cfg │ │ │ ├── goofoo_near_0.2_peek_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_peek_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_peek_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_peek_efine.inst.cfg │ │ │ ├── goofoo_near_0.40_peek_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_peek_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_peek_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_peek_efine.inst.cfg │ │ │ ├── goofoo_near_0.6_peek_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_peek_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_peek_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_peek_efine.inst.cfg │ │ │ ├── goofoo_near_0.8_peek_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_peek_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_peek_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_peek_efine.inst.cfg │ │ │ ├── goofoo_near_1.0_peek_fine.inst.cfg │ │ │ └── goofoo_near_1.0_peek_standard.inst.cfg │ │ ├── petg │ │ │ ├── goofoo_far_0.2_petg_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_petg_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_petg_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_petg_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_petg_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_petg_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_petg_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_petg_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_petg_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_petg_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_petg_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_petg_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_petg_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_petg_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_petg_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_petg_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_petg_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_petg_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_petg_fine.inst.cfg │ │ │ ├── goofoo_near_1.0_petg_standard.inst.cfg │ │ │ ├── goofoo_open_0.2_petg_fine.inst.cfg │ │ │ ├── goofoo_open_0.2_petg_standard.inst.cfg │ │ │ ├── goofoo_open_0.40_petg_fine.inst.cfg │ │ │ ├── goofoo_open_0.40_petg_standard.inst.cfg │ │ │ ├── goofoo_open_0.6_petg_fine.inst.cfg │ │ │ ├── goofoo_open_0.6_petg_standard.inst.cfg │ │ │ ├── goofoo_open_0.8_petg_fine.inst.cfg │ │ │ ├── goofoo_open_0.8_petg_standard.inst.cfg │ │ │ ├── goofoo_open_1.0_petg_fine.inst.cfg │ │ │ ├── goofoo_open_1.0_petg_standard.inst.cfg │ │ │ ├── goofoo_small_0.2_petg_fine.inst.cfg │ │ │ ├── goofoo_small_0.2_petg_standard.inst.cfg │ │ │ ├── goofoo_small_0.40_petg_fine.inst.cfg │ │ │ ├── goofoo_small_0.40_petg_standard.inst.cfg │ │ │ ├── goofoo_small_0.6_petg_fine.inst.cfg │ │ │ ├── goofoo_small_0.6_petg_standard.inst.cfg │ │ │ ├── goofoo_small_0.8_petg_fine.inst.cfg │ │ │ ├── goofoo_small_0.8_petg_standard.inst.cfg │ │ │ ├── goofoo_small_1.0_petg_fine.inst.cfg │ │ │ └── goofoo_small_1.0_petg_standard.inst.cfg │ │ ├── pla │ │ │ ├── goofoo_far_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_far_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_far_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_far_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_far_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_far_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_far_bronze_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_far_bronze_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_far_bronze_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_far_bronze_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_far_bronze_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_far_bronze_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_far_bronze_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_far_bronze_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_far_bronze_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_far_bronze_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_far_bronze_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_far_bronze_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_far_bronze_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_far_emarble_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_far_emarble_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_far_emarble_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_far_emarble_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_far_emarble_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_far_emarble_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_far_emarble_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_far_emarble_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_far_emarble_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_far_emarble_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_far_emarble_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_far_emarble_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_far_emarble_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_far_esilk_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_far_esilk_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_far_esilk_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_far_esilk_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_far_esilk_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_far_esilk_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_far_esilk_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_far_esilk_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_far_esilk_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_far_esilk_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_far_esilk_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_far_esilk_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_far_esilk_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_far_wood_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_far_wood_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_far_wood_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_far_wood_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_far_wood_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_far_wood_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_far_wood_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_far_wood_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_far_wood_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_far_wood_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_far_wood_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_far_wood_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_far_wood_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_far_wood_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_far_wood_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_far_wood_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_far_wood_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_far_wood_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_far_wood_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_far_wood_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_near_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_near_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_near_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_near_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_near_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_near_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_near_bronze_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_near_bronze_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_near_bronze_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_near_bronze_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_near_bronze_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_near_bronze_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_near_bronze_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_near_bronze_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_near_bronze_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_near_bronze_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_near_bronze_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_near_bronze_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_near_bronze_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_near_emarble_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_near_emarble_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_near_emarble_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_near_emarble_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_near_emarble_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_near_emarble_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_near_emarble_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_near_emarble_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_near_emarble_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_near_emarble_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_near_emarble_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_near_emarble_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_near_emarble_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_near_esilk_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_near_esilk_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_near_esilk_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_near_esilk_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_near_esilk_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_near_esilk_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_near_esilk_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_near_esilk_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_near_esilk_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_near_esilk_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_near_esilk_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_near_esilk_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_near_esilk_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_near_wood_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_near_wood_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_near_wood_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_near_wood_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_near_wood_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_near_wood_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_near_wood_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_near_wood_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_near_wood_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_near_wood_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_near_wood_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_near_wood_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_near_wood_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_near_wood_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_near_wood_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_near_wood_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_near_wood_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_near_wood_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_near_wood_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_near_wood_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_open_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_open_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_open_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_open_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_open_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_open_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_open_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_open_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_open_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_open_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_open_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_open_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_open_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_open_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_open_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_open_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_open_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_open_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_open_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_open_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_open_emarble_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_open_emarble_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_open_emarble_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_open_emarble_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_open_emarble_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_open_emarble_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_open_emarble_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_open_emarble_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_open_emarble_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_open_emarble_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_open_emarble_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_open_emarble_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_open_emarble_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_open_esilk_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_open_esilk_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_open_esilk_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_open_esilk_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_open_esilk_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_open_esilk_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_open_esilk_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_open_esilk_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_open_esilk_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_open_esilk_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_open_esilk_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_open_esilk_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_open_esilk_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_open_wood_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_open_wood_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_open_wood_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_open_wood_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_open_wood_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_open_wood_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_open_wood_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_open_wood_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_open_wood_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_open_wood_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_open_wood_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_open_wood_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_open_wood_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_open_wood_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_open_wood_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_open_wood_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_open_wood_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_open_wood_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_open_wood_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_open_wood_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_small_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_small_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_small_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_small_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_small_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_small_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_small_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_small_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_small_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_small_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_small_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_small_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_small_0.70_pla_standard.inst.cfg │ │ │ ├── goofoo_small_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_small_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_small_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_small_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_small_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_small_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_small_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_small_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_small_emarble_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_small_emarble_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_small_emarble_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_small_emarble_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_small_emarble_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_small_emarble_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_small_emarble_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_small_emarble_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_small_emarble_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_small_emarble_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_small_emarble_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_small_emarble_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_small_emarble_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_small_esilk_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_small_esilk_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_small_esilk_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_small_esilk_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_small_esilk_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_small_esilk_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_small_esilk_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_small_esilk_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_small_esilk_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_small_esilk_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_small_esilk_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_small_esilk_1.0_pla_fine.inst.cfg │ │ │ ├── goofoo_small_esilk_1.0_pla_standard.inst.cfg │ │ │ ├── goofoo_small_wood_0.2_pla_draft.inst.cfg │ │ │ ├── goofoo_small_wood_0.2_pla_efine.inst.cfg │ │ │ ├── goofoo_small_wood_0.2_pla_fine.inst.cfg │ │ │ ├── goofoo_small_wood_0.2_pla_standard.inst.cfg │ │ │ ├── goofoo_small_wood_0.40_pla_draft.inst.cfg │ │ │ ├── goofoo_small_wood_0.40_pla_efine.inst.cfg │ │ │ ├── goofoo_small_wood_0.40_pla_fine.inst.cfg │ │ │ ├── goofoo_small_wood_0.40_pla_standard.inst.cfg │ │ │ ├── goofoo_small_wood_0.6_pla_draft.inst.cfg │ │ │ ├── goofoo_small_wood_0.6_pla_efine.inst.cfg │ │ │ ├── goofoo_small_wood_0.6_pla_fine.inst.cfg │ │ │ ├── goofoo_small_wood_0.6_pla_standard.inst.cfg │ │ │ ├── goofoo_small_wood_0.8_pla_draft.inst.cfg │ │ │ ├── goofoo_small_wood_0.8_pla_efine.inst.cfg │ │ │ ├── goofoo_small_wood_0.8_pla_fine.inst.cfg │ │ │ ├── goofoo_small_wood_0.8_pla_standard.inst.cfg │ │ │ ├── goofoo_small_wood_1.0_pla_draft.inst.cfg │ │ │ ├── goofoo_small_wood_1.0_pla_efine.inst.cfg │ │ │ ├── goofoo_small_wood_1.0_pla_fine.inst.cfg │ │ │ └── goofoo_small_wood_1.0_pla_standard.inst.cfg │ │ ├── pva │ │ │ ├── goofoo_far_0.2_pva_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_pva_efine.inst.cfg │ │ │ ├── goofoo_far_0.2_pva_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_pva_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_pva_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_pva_efine.inst.cfg │ │ │ ├── goofoo_far_0.40_pva_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_pva_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_pva_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_pva_efine.inst.cfg │ │ │ ├── goofoo_far_0.6_pva_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_pva_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_pva_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_pva_efine.inst.cfg │ │ │ ├── goofoo_far_0.8_pva_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_pva_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_pva_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_pva_efine.inst.cfg │ │ │ ├── goofoo_far_1.0_pva_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_pva_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_pva_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_pva_efine.inst.cfg │ │ │ ├── goofoo_near_0.2_pva_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_pva_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_pva_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_pva_efine.inst.cfg │ │ │ ├── goofoo_near_0.40_pva_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_pva_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_pva_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_pva_efine.inst.cfg │ │ │ ├── goofoo_near_0.6_pva_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_pva_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_pva_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_pva_efine.inst.cfg │ │ │ ├── goofoo_near_0.8_pva_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_pva_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_pva_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_pva_efine.inst.cfg │ │ │ ├── goofoo_near_1.0_pva_fine.inst.cfg │ │ │ ├── goofoo_near_1.0_pva_standard.inst.cfg │ │ │ ├── goofoo_open_0.2_pva_draft.inst.cfg │ │ │ ├── goofoo_open_0.2_pva_efine.inst.cfg │ │ │ ├── goofoo_open_0.2_pva_fine.inst.cfg │ │ │ ├── goofoo_open_0.2_pva_standard.inst.cfg │ │ │ ├── goofoo_open_0.40_pva_draft.inst.cfg │ │ │ ├── goofoo_open_0.40_pva_efine.inst.cfg │ │ │ ├── goofoo_open_0.40_pva_fine.inst.cfg │ │ │ ├── goofoo_open_0.40_pva_standard.inst.cfg │ │ │ ├── goofoo_open_0.6_pva_draft.inst.cfg │ │ │ ├── goofoo_open_0.6_pva_efine.inst.cfg │ │ │ ├── goofoo_open_0.6_pva_fine.inst.cfg │ │ │ ├── goofoo_open_0.6_pva_standard.inst.cfg │ │ │ ├── goofoo_open_0.8_pva_draft.inst.cfg │ │ │ ├── goofoo_open_0.8_pva_efine.inst.cfg │ │ │ ├── goofoo_open_0.8_pva_fine.inst.cfg │ │ │ ├── goofoo_open_0.8_pva_standard.inst.cfg │ │ │ ├── goofoo_open_1.0_pva_draft.inst.cfg │ │ │ ├── goofoo_open_1.0_pva_efine.inst.cfg │ │ │ ├── goofoo_open_1.0_pva_fine.inst.cfg │ │ │ └── goofoo_open_1.0_pva_standard.inst.cfg │ │ ├── tpe │ │ │ ├── goofoo_far_0.2_tpe_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_tpe_efine.inst.cfg │ │ │ ├── goofoo_far_0.2_tpe_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_tpe_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_tpe_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_tpe_efine.inst.cfg │ │ │ ├── goofoo_far_0.40_tpe_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_tpe_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_tpe_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_tpe_efine.inst.cfg │ │ │ ├── goofoo_far_0.6_tpe_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_tpe_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_tpe_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_tpe_efine.inst.cfg │ │ │ ├── goofoo_far_0.8_tpe_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_tpe_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_tpe_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_tpe_efine.inst.cfg │ │ │ ├── goofoo_far_1.0_tpe_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_tpe_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_tpe_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_tpe_efine.inst.cfg │ │ │ ├── goofoo_near_0.2_tpe_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_tpe_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_tpe_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_tpe_efine.inst.cfg │ │ │ ├── goofoo_near_0.40_tpe_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_tpe_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_tpe_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_tpe_efine.inst.cfg │ │ │ ├── goofoo_near_0.6_tpe_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_tpe_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_tpe_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_tpe_efine.inst.cfg │ │ │ ├── goofoo_near_0.8_tpe_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_tpe_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_tpe_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_tpe_efine.inst.cfg │ │ │ ├── goofoo_near_1.0_tpe_fine.inst.cfg │ │ │ └── goofoo_near_1.0_tpe_standard.inst.cfg │ │ └── tpu │ │ │ ├── goofoo_far_0.2_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_far_0.2_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_far_0.2_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_far_0.2_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_far_0.2_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_far_0.40_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_far_0.40_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_far_0.40_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_far_0.40_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_far_0.6_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_far_0.6_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_far_0.6_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_far_0.6_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_far_0.8_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_far_0.8_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_far_0.8_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_far_0.8_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_far_1.0_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_far_1.0_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_far_1.0_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_far_1.0_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_near_0.2_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_near_0.2_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_near_0.2_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_near_0.2_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_near_0.40_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_near_0.40_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_near_0.40_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_near_0.40_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_near_0.6_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_near_0.6_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_near_0.6_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_near_0.6_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_near_0.8_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_near_0.8_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_near_0.8_tpu_95a_fine.inst.cfg │ │ │ ├── goofoo_near_0.8_tpu_95a_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_tpu_87a_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_tpu_87a_fine.inst.cfg │ │ │ ├── goofoo_near_1.0_tpu_87a_standard.inst.cfg │ │ │ ├── goofoo_near_1.0_tpu_95a_draft.inst.cfg │ │ │ ├── goofoo_near_1.0_tpu_95a_efine.inst.cfg │ │ │ ├── goofoo_near_1.0_tpu_95a_fine.inst.cfg │ │ │ └── goofoo_near_1.0_tpu_95a_standard.inst.cfg │ ├── gutenberg │ │ ├── gutenberg_global_fast_quality.inst.cfg │ │ ├── gutenberg_global_fine_quality.inst.cfg │ │ ├── gutenberg_global_normal_quality.inst.cfg │ │ └── gutenberg_global_strong_quality.inst.cfg │ ├── high.inst.cfg │ ├── hms434 │ │ ├── hms434_global_Coarse_Quality.inst.cfg │ │ ├── hms434_global_High_Quality.inst.cfg │ │ ├── hms434_global_Normal_Quality.inst.cfg │ │ └── pla │ │ │ └── hms434_0.4_pla_high.inst.cfg │ ├── imade3d_jellybox │ │ ├── PETG │ │ │ ├── jbo_generic_petg_0.4_coarse.inst.cfg │ │ │ ├── jbo_generic_petg_0.4_fine.inst.cfg │ │ │ └── jbo_generic_petg_0.4_medium.inst.cfg │ │ ├── PLA │ │ │ ├── jbo_generic_pla_0.4_coarse.inst.cfg │ │ │ ├── jbo_generic_pla_0.4_fine.inst.cfg │ │ │ ├── jbo_generic_pla_0.4_medium.inst.cfg │ │ │ └── jbo_generic_pla_0.4_ultrafine.inst.cfg │ │ ├── imade3d_jellybox_coarse.inst.cfg │ │ ├── imade3d_jellybox_fine.inst.cfg │ │ ├── imade3d_jellybox_normal.inst.cfg │ │ └── imade3d_jellybox_ultrafine.inst.cfg │ ├── imade3d_jellybox_2 │ │ ├── PETG │ │ │ ├── jb2_generic_petg_0.4_coarse.inst.cfg │ │ │ ├── jb2_generic_petg_0.4_fine.inst.cfg │ │ │ └── jb2_generic_petg_0.4_medium.inst.cfg │ │ ├── PLA │ │ │ ├── jb2_generic_pla_0.4_coarse.inst.cfg │ │ │ ├── jb2_generic_pla_0.4_fine.inst.cfg │ │ │ ├── jb2_generic_pla_0.4_medium.inst.cfg │ │ │ └── jb2_generic_pla_0.4_ultrafine.inst.cfg │ │ ├── jb2_global_coarse.inst.cfg │ │ ├── jb2_global_fine.inst.cfg │ │ ├── jb2_global_normal.inst.cfg │ │ └── jb2_global_ultrafine.inst.cfg │ ├── inat │ │ ├── inat_base_advanced_materials.inst.cfg │ │ ├── inat_base_draft.inst.cfg │ │ ├── inat_base_fine.inst.cfg │ │ ├── inat_base_standard.inst.cfg │ │ ├── inat_base_strong.inst.cfg │ │ └── inat_base_tree_support.inst.cfg │ ├── jgaurora_a6 │ │ ├── jgaurora_a6_0.12_detail.inst.cfg │ │ ├── jgaurora_a6_0.16_optimal.inst.cfg │ │ ├── jgaurora_a6_0.24_draft.inst.cfg │ │ ├── jgaurora_a6_0.28_fast.inst.cfg │ │ └── jgaurora_a6_0.2_normal.inst.cfg │ ├── katihal │ │ ├── alya3dp_normal.inst.cfg │ │ ├── alya3dp_normal_generic_pla.inst.cfg │ │ ├── alyanx3dp_normal.inst.cfg │ │ ├── alyanx3dp_normal_generic_pla.inst.cfg │ │ ├── kupido_normal.inst.cfg │ │ ├── kupido_normal_generic_abs.inst.cfg │ │ └── kupido_normal_generic_pla.inst.cfg │ ├── kemiq_q2 │ │ ├── kemiq_q2_beta_abs_draft.inst.cfg │ │ ├── kemiq_q2_beta_abs_extra_fine.inst.cfg │ │ ├── kemiq_q2_beta_abs_fine.inst.cfg │ │ ├── kemiq_q2_beta_abs_low.inst.cfg │ │ ├── kemiq_q2_beta_abs_normal.inst.cfg │ │ ├── kemiq_q2_beta_pla_draft.inst.cfg │ │ ├── kemiq_q2_beta_pla_extra_fine.inst.cfg │ │ ├── kemiq_q2_beta_pla_fine.inst.cfg │ │ ├── kemiq_q2_beta_pla_low.inst.cfg │ │ ├── kemiq_q2_beta_pla_normal.inst.cfg │ │ ├── kemiq_q2_gama_pla_draft.inst.cfg │ │ ├── kemiq_q2_gama_pla_extra_fine.inst.cfg │ │ ├── kemiq_q2_gama_pla_fine.inst.cfg │ │ ├── kemiq_q2_gama_pla_low.inst.cfg │ │ └── kemiq_q2_gama_pla_normal.inst.cfg │ ├── key3d │ │ ├── key3d_tyro_best.inst.cfg │ │ ├── key3d_tyro_fast.inst.cfg │ │ └── key3d_tyro_normal.inst.cfg │ ├── kingroon │ │ ├── ABS │ │ │ ├── kingroon_0.2_ABS_super.inst.cfg │ │ │ ├── kingroon_0.2_ABS_ultra.inst.cfg │ │ │ ├── kingroon_0.3_ABS_adaptive.inst.cfg │ │ │ ├── kingroon_0.3_ABS_low.inst.cfg │ │ │ ├── kingroon_0.3_ABS_standard.inst.cfg │ │ │ ├── kingroon_0.3_ABS_super.inst.cfg │ │ │ ├── kingroon_0.4_ABS_adaptive.inst.cfg │ │ │ ├── kingroon_0.4_ABS_low.inst.cfg │ │ │ ├── kingroon_0.4_ABS_standard.inst.cfg │ │ │ ├── kingroon_0.4_ABS_super.inst.cfg │ │ │ ├── kingroon_0.5_ABS_adaptive.inst.cfg │ │ │ ├── kingroon_0.5_ABS_low.inst.cfg │ │ │ ├── kingroon_0.5_ABS_standard.inst.cfg │ │ │ ├── kingroon_0.5_ABS_super.inst.cfg │ │ │ ├── kingroon_0.6_ABS_standard.inst.cfg │ │ │ ├── kingroon_0.8_ABS_draft.inst.cfg │ │ │ └── kingroon_1.0_ABS_draft.inst.cfg │ │ ├── PETG │ │ │ ├── kingroon_0.2_PETG_super.inst.cfg │ │ │ ├── kingroon_0.2_PETG_ultra.inst.cfg │ │ │ ├── kingroon_0.3_PETG_adaptive.inst.cfg │ │ │ ├── kingroon_0.3_PETG_low.inst.cfg │ │ │ ├── kingroon_0.3_PETG_standard.inst.cfg │ │ │ ├── kingroon_0.3_PETG_super.inst.cfg │ │ │ ├── kingroon_0.4_PETG_adaptive.inst.cfg │ │ │ ├── kingroon_0.4_PETG_low.inst.cfg │ │ │ ├── kingroon_0.4_PETG_standard.inst.cfg │ │ │ ├── kingroon_0.4_PETG_super.inst.cfg │ │ │ ├── kingroon_0.5_PETG_adaptive.inst.cfg │ │ │ ├── kingroon_0.5_PETG_low.inst.cfg │ │ │ ├── kingroon_0.5_PETG_standard.inst.cfg │ │ │ ├── kingroon_0.5_PETG_super.inst.cfg │ │ │ ├── kingroon_0.6_PETG_standard.inst.cfg │ │ │ ├── kingroon_0.8_PETG_draft.inst.cfg │ │ │ └── kingroon_1.0_PETG_draft.inst.cfg │ │ ├── PLA │ │ │ ├── kingroon_0.2_PLA_super.inst.cfg │ │ │ ├── kingroon_0.2_PLA_ultra.inst.cfg │ │ │ ├── kingroon_0.3_PLA_adaptive.inst.cfg │ │ │ ├── kingroon_0.3_PLA_low.inst.cfg │ │ │ ├── kingroon_0.3_PLA_standard.inst.cfg │ │ │ ├── kingroon_0.3_PLA_super.inst.cfg │ │ │ ├── kingroon_0.4_PLA_adaptive.inst.cfg │ │ │ ├── kingroon_0.4_PLA_low.inst.cfg │ │ │ ├── kingroon_0.4_PLA_standard.inst.cfg │ │ │ ├── kingroon_0.4_PLA_super.inst.cfg │ │ │ ├── kingroon_0.5_PLA_adaptive.inst.cfg │ │ │ ├── kingroon_0.5_PLA_low.inst.cfg │ │ │ ├── kingroon_0.5_PLA_standard.inst.cfg │ │ │ ├── kingroon_0.5_PLA_super.inst.cfg │ │ │ ├── kingroon_0.6_PLA_draft.inst.cfg │ │ │ ├── kingroon_0.6_PLA_low.inst.cfg │ │ │ ├── kingroon_0.6_PLA_standard.inst.cfg │ │ │ ├── kingroon_0.8_PLA_draft.inst.cfg │ │ │ └── kingroon_1.0_PLA_draft.inst.cfg │ │ ├── TPU │ │ │ ├── kingroon_0.3_TPU_adaptive.inst.cfg │ │ │ ├── kingroon_0.3_TPU_standard.inst.cfg │ │ │ ├── kingroon_0.3_TPU_super.inst.cfg │ │ │ ├── kingroon_0.4_TPU_adaptive.inst.cfg │ │ │ ├── kingroon_0.4_TPU_standard.inst.cfg │ │ │ ├── kingroon_0.4_TPU_super.inst.cfg │ │ │ ├── kingroon_0.5_TPU_adaptive.inst.cfg │ │ │ ├── kingroon_0.5_TPU_standard.inst.cfg │ │ │ ├── kingroon_0.5_TPU_super.inst.cfg │ │ │ ├── kingroon_0.6_TPU_standard.inst.cfg │ │ │ ├── kingroon_0.8_TPU_draft.inst.cfg │ │ │ └── kingroon_1.0_TPU_draft.inst.cfg │ │ ├── kingroon_global_adaptive.inst.cfg │ │ ├── kingroon_global_draft.inst.cfg │ │ ├── kingroon_global_low.inst.cfg │ │ ├── kingroon_global_standard.inst.cfg │ │ ├── kingroon_global_super.inst.cfg │ │ └── kingroon_global_ultra.inst.cfg │ ├── koonovo │ │ ├── koonovo_base_global_draft.inst.cfg │ │ ├── koonovo_base_global_standard.inst.cfg │ │ └── koovono_base_global_high.inst.cfg │ ├── liquid │ │ ├── liquid_global_Draft_Quality.inst.cfg │ │ ├── liquid_global_Fast_Quality.inst.cfg │ │ ├── liquid_global_High_Quality.inst.cfg │ │ ├── liquid_global_Normal_Quality.inst.cfg │ │ ├── liquid_global_Superdraft_Quality.inst.cfg │ │ ├── liquid_global_Verydraft_Quality.inst.cfg │ │ ├── liquid_vo0.4_ABS_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_ABS_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_ABS_High_Quality.inst.cfg │ │ ├── liquid_vo0.4_ABS_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.4_CPE_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_CPE_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_CPE_High_Quality.inst.cfg │ │ ├── liquid_vo0.4_CPE_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.4_Nylon_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_Nylon_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_Nylon_High_Quality.inst.cfg │ │ ├── liquid_vo0.4_Nylon_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.4_PC_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_PC_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_PC_High_Quality.inst.cfg │ │ ├── liquid_vo0.4_PC_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.4_PETG_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_PETG_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_PETG_High_Quality.inst.cfg │ │ ├── liquid_vo0.4_PETG_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.4_PLA_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_PLA_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_PLA_High_Quality.inst.cfg │ │ ├── liquid_vo0.4_PLA_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.4_PP_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_PP_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_PP_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.4_TPU_Draft_Print.inst.cfg │ │ ├── liquid_vo0.4_TPU_Fast_Print.inst.cfg │ │ ├── liquid_vo0.4_TPU_Normal_Quality.inst.cfg │ │ ├── liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg │ │ ├── liquid_vo0.6_CFFPA_Draft_Print.inst.cfg │ │ ├── liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg │ │ ├── liquid_vo0.6_GFFPA_Draft_Print.inst.cfg │ │ ├── liquid_vo0.6_PETG_Draft_Print.inst.cfg │ │ ├── liquid_vo0.6_PETG_Fast_Print.inst.cfg │ │ ├── liquid_vo0.6_PLA_Draft_Print.inst.cfg │ │ ├── liquid_vo0.6_PLA_Fast_Print.inst.cfg │ │ ├── liquid_vo0.8_ABS_Draft_Print.inst.cfg │ │ ├── liquid_vo0.8_ABS_Superdraft_Print.inst.cfg │ │ ├── liquid_vo0.8_ABS_Verydraft_Print.inst.cfg │ │ ├── liquid_vo0.8_CPE_Draft_Print.inst.cfg │ │ ├── liquid_vo0.8_CPE_Superdraft_Print.inst.cfg │ │ ├── liquid_vo0.8_CPE_Verydraft_Print.inst.cfg │ │ ├── liquid_vo0.8_Nylon_Draft_Print.inst.cfg │ │ ├── liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg │ │ ├── liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PC_Fast_Print.inst.cfg │ │ ├── liquid_vo0.8_PC_Superdraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PC_Verydraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PETG_Draft_Print.inst.cfg │ │ ├── liquid_vo0.8_PETG_Superdraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PETG_Verydraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PLA_Draft_Print.inst.cfg │ │ ├── liquid_vo0.8_PLA_Superdraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PLA_Verydraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PP_Draft_Print.inst.cfg │ │ ├── liquid_vo0.8_PP_Superdraft_Print.inst.cfg │ │ ├── liquid_vo0.8_PP_Verydraft_Print.inst.cfg │ │ ├── liquid_vo0.8_TPU_Draft_Print.inst.cfg │ │ ├── liquid_vo0.8_TPU_Superdraft_Print.inst.cfg │ │ └── liquid_vo0.8_TPU_Verydraft_Print.inst.cfg │ ├── lnl3d │ │ ├── lnl3d_base_0.2_generic_PETG_super.inst.cfg │ │ ├── lnl3d_base_0.2_generic_PETG_ultra.inst.cfg │ │ ├── lnl3d_base_0.2_generic_PLA_super.inst.cfg │ │ ├── lnl3d_base_0.2_generic_PLA_ultra.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PETG_low.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PETG_standard.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PETG_super.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PLA_low.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PLA_standard.inst.cfg │ │ ├── lnl3d_base_0.4_generic_PLA_super.inst.cfg │ │ ├── lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg │ │ ├── lnl3d_base_0.4_generic_TPU_standard.inst.cfg │ │ ├── lnl3d_base_0.4_generic_TPU_super.inst.cfg │ │ ├── lnl3d_base_0.6_generic_PETG_standard.inst.cfg │ │ ├── lnl3d_base_0.6_generic_PLA_draft.inst.cfg │ │ ├── lnl3d_base_0.6_generic_PLA_low.inst.cfg │ │ ├── lnl3d_base_0.6_generic_PLA_standard.inst.cfg │ │ ├── lnl3d_base_0.6_generic_TPU_standard.inst.cfg │ │ ├── lnl3d_base_0.8_generic_PETG_draft.inst.cfg │ │ ├── lnl3d_base_0.8_generic_PLA_draft.inst.cfg │ │ ├── lnl3d_base_0.8_generic_TPU_draft.inst.cfg │ │ ├── lnl3d_base_global_adaptive.inst.cfg │ │ ├── lnl3d_base_global_draft.inst.cfg │ │ ├── lnl3d_base_global_low.inst.cfg │ │ ├── lnl3d_base_global_standard.inst.cfg │ │ ├── lnl3d_base_global_super.inst.cfg │ │ └── lnl3d_base_global_ultra.inst.cfg │ ├── longer │ │ ├── ABS │ │ │ ├── longer_0.4_ABS_adaptive.inst.cfg │ │ │ ├── longer_0.4_ABS_low.inst.cfg │ │ │ ├── longer_0.4_ABS_standard.inst.cfg │ │ │ └── longer_0.4_ABS_super.inst.cfg │ │ ├── PETG │ │ │ ├── longer_0.4_PETG_adaptive.inst.cfg │ │ │ ├── longer_0.4_PETG_low.inst.cfg │ │ │ ├── longer_0.4_PETG_standard.inst.cfg │ │ │ └── longer_0.4_PETG_super.inst.cfg │ │ ├── PLA │ │ │ ├── longer_0.4_PLA_adaptive.inst.cfg │ │ │ ├── longer_0.4_PLA_low.inst.cfg │ │ │ ├── longer_0.4_PLA_standard.inst.cfg │ │ │ └── longer_0.4_PLA_super.inst.cfg │ │ ├── TPU │ │ │ ├── longer_0.4_TPU_adaptive.inst.cfg │ │ │ ├── longer_0.4_TPU_standard.inst.cfg │ │ │ └── longer_0.4_TPU_super.inst.cfg │ │ ├── longer_global_adaptive.inst.cfg │ │ ├── longer_global_draft.inst.cfg │ │ ├── longer_global_low.inst.cfg │ │ ├── longer_global_standard.inst.cfg │ │ ├── longer_global_super.inst.cfg │ │ └── longer_global_ultra.inst.cfg │ ├── makeblock │ │ └── makeblock_mcreate_pla_normal.inst.cfg │ ├── malyan_m200 │ │ ├── abs │ │ │ ├── malyan_m200_abs_draft.inst.cfg │ │ │ ├── malyan_m200_abs_fast.inst.cfg │ │ │ ├── malyan_m200_abs_high.inst.cfg │ │ │ ├── malyan_m200_abs_normal.inst.cfg │ │ │ ├── malyan_m200_abs_superdraft.inst.cfg │ │ │ ├── malyan_m200_abs_thickerdraft.inst.cfg │ │ │ ├── malyan_m200_abs_ultra.inst.cfg │ │ │ └── malyan_m200_abs_verydraft.inst.cfg │ │ ├── malyan_m200_global_Draft_Quality.inst.cfg │ │ ├── malyan_m200_global_Fast_Quality.inst.cfg │ │ ├── malyan_m200_global_High_Quality.inst.cfg │ │ ├── malyan_m200_global_Normal_Quality.inst.cfg │ │ ├── malyan_m200_global_SuperDraft_Quality.inst.cfg │ │ ├── malyan_m200_global_ThickerDraft_Quality.inst.cfg │ │ ├── malyan_m200_global_Ultra_Quality.inst.cfg │ │ ├── malyan_m200_global_VeryDraft_Quality.inst.cfg │ │ ├── petg │ │ │ ├── malyan_m200_petg_draft.inst.cfg │ │ │ ├── malyan_m200_petg_fast.inst.cfg │ │ │ ├── malyan_m200_petg_high.inst.cfg │ │ │ ├── malyan_m200_petg_normal.inst.cfg │ │ │ ├── malyan_m200_petg_superdraft.inst.cfg │ │ │ ├── malyan_m200_petg_thickerdraft.inst.cfg │ │ │ ├── malyan_m200_petg_ultra.inst.cfg │ │ │ └── malyan_m200_petg_verydraft.inst.cfg │ │ └── pla │ │ │ ├── malyan_m200_pla_draft.inst.cfg │ │ │ ├── malyan_m200_pla_fast.inst.cfg │ │ │ ├── malyan_m200_pla_high.inst.cfg │ │ │ ├── malyan_m200_pla_normal.inst.cfg │ │ │ ├── malyan_m200_pla_superdraft.inst.cfg │ │ │ ├── malyan_m200_pla_thickerdraft.inst.cfg │ │ │ ├── malyan_m200_pla_ultra.inst.cfg │ │ │ └── malyan_m200_pla_verydraft.inst.cfg │ ├── mingda │ │ ├── ABS │ │ │ ├── mingda_0.2_ABS_super.inst.cfg │ │ │ ├── mingda_0.2_ABS_ultra.inst.cfg │ │ │ ├── mingda_0.3_ABS_adaptive.inst.cfg │ │ │ ├── mingda_0.3_ABS_low.inst.cfg │ │ │ ├── mingda_0.3_ABS_standard.inst.cfg │ │ │ ├── mingda_0.3_ABS_super.inst.cfg │ │ │ ├── mingda_0.4_ABS_adaptive.inst.cfg │ │ │ ├── mingda_0.4_ABS_low.inst.cfg │ │ │ ├── mingda_0.4_ABS_standard.inst.cfg │ │ │ ├── mingda_0.4_ABS_super.inst.cfg │ │ │ ├── mingda_0.5_ABS_adaptive.inst.cfg │ │ │ ├── mingda_0.5_ABS_low.inst.cfg │ │ │ ├── mingda_0.5_ABS_standard.inst.cfg │ │ │ ├── mingda_0.5_ABS_super.inst.cfg │ │ │ ├── mingda_0.6_ABS_standard.inst.cfg │ │ │ ├── mingda_0.8_ABS_draft.inst.cfg │ │ │ └── mingda_1.0_ABS_draft.inst.cfg │ │ ├── PETG │ │ │ ├── mingda_0.2_PETG_super.inst.cfg │ │ │ ├── mingda_0.2_PETG_ultra.inst.cfg │ │ │ ├── mingda_0.3_PETG_adaptive.inst.cfg │ │ │ ├── mingda_0.3_PETG_low.inst.cfg │ │ │ ├── mingda_0.3_PETG_standard.inst.cfg │ │ │ ├── mingda_0.3_PETG_super.inst.cfg │ │ │ ├── mingda_0.4_PETG_adaptive.inst.cfg │ │ │ ├── mingda_0.4_PETG_low.inst.cfg │ │ │ ├── mingda_0.4_PETG_standard.inst.cfg │ │ │ ├── mingda_0.4_PETG_super.inst.cfg │ │ │ ├── mingda_0.5_PETG_adaptive.inst.cfg │ │ │ ├── mingda_0.5_PETG_low.inst.cfg │ │ │ ├── mingda_0.5_PETG_standard.inst.cfg │ │ │ ├── mingda_0.5_PETG_super.inst.cfg │ │ │ ├── mingda_0.6_PETG_standard.inst.cfg │ │ │ ├── mingda_0.8_PETG_draft.inst.cfg │ │ │ └── mingda_1.0_PETG_draft.inst.cfg │ │ ├── PLA │ │ │ ├── mingda_0.2_PLA_super.inst.cfg │ │ │ ├── mingda_0.2_PLA_ultra.inst.cfg │ │ │ ├── mingda_0.3_PLA_adaptive.inst.cfg │ │ │ ├── mingda_0.3_PLA_low.inst.cfg │ │ │ ├── mingda_0.3_PLA_standard.inst.cfg │ │ │ ├── mingda_0.3_PLA_super.inst.cfg │ │ │ ├── mingda_0.4_PLA_adaptive.inst.cfg │ │ │ ├── mingda_0.4_PLA_low.inst.cfg │ │ │ ├── mingda_0.4_PLA_standard.inst.cfg │ │ │ ├── mingda_0.4_PLA_super.inst.cfg │ │ │ ├── mingda_0.5_PLA_adaptive.inst.cfg │ │ │ ├── mingda_0.5_PLA_low.inst.cfg │ │ │ ├── mingda_0.5_PLA_standard.inst.cfg │ │ │ ├── mingda_0.5_PLA_super.inst.cfg │ │ │ ├── mingda_0.6_PLA_draft.inst.cfg │ │ │ ├── mingda_0.6_PLA_low.inst.cfg │ │ │ ├── mingda_0.6_PLA_standard.inst.cfg │ │ │ ├── mingda_0.8_PLA_draft.inst.cfg │ │ │ └── mingda_1.0_PLA_draft.inst.cfg │ │ ├── TPU │ │ │ ├── mingda_0.3_TPU_adaptive.inst.cfg │ │ │ ├── mingda_0.3_TPU_standard.inst.cfg │ │ │ ├── mingda_0.3_TPU_super.inst.cfg │ │ │ ├── mingda_0.4_TPU_adaptive.inst.cfg │ │ │ ├── mingda_0.4_TPU_standard.inst.cfg │ │ │ ├── mingda_0.4_TPU_super.inst.cfg │ │ │ ├── mingda_0.5_TPU_adaptive.inst.cfg │ │ │ ├── mingda_0.5_TPU_standard.inst.cfg │ │ │ ├── mingda_0.5_TPU_super.inst.cfg │ │ │ ├── mingda_0.6_TPU_standard.inst.cfg │ │ │ ├── mingda_0.8_TPU_draft.inst.cfg │ │ │ └── mingda_1.0_TPU_draft.inst.cfg │ │ ├── mingda_global_adaptive.inst.cfg │ │ ├── mingda_global_draft.inst.cfg │ │ ├── mingda_global_low.inst.cfg │ │ ├── mingda_global_standard.inst.cfg │ │ ├── mingda_global_super.inst.cfg │ │ └── mingda_global_ultra.inst.cfg │ ├── mixware_hyper_k │ │ ├── mixware_hyper_k_draft.inst.cfg │ │ ├── mixware_hyper_k_extra_fast.inst.cfg │ │ └── mixware_hyper_k_normal.inst.cfg │ ├── mixware_hyper_s │ │ ├── mixware_hyper_s_draft.inst.cfg │ │ ├── mixware_hyper_s_extra_fast.inst.cfg │ │ └── mixware_hyper_s_normal.inst.cfg │ ├── mixware_vulcan │ │ ├── mixware_vulcan_draft.inst.cfg │ │ ├── mixware_vulcan_extra_fast.inst.cfg │ │ └── mixware_vulcan_normal.inst.cfg │ ├── mixware_wand │ │ ├── mixware_wand_draft.inst.cfg │ │ ├── mixware_wand_extra_fast.inst.cfg │ │ └── mixware_wand_normal.inst.cfg │ ├── monoprice_select_mini_v2 │ │ ├── abs │ │ │ ├── monoprice_select_mini_v2_abs_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_abs_verydraft.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Draft_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Fast_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_High_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Normal_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg │ │ ├── nylon │ │ │ ├── monoprice_select_mini_v2_nylon_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_nylon_verydraft.inst.cfg │ │ ├── pc │ │ │ ├── monoprice_select_mini_v2_pc_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_pc_verydraft.inst.cfg │ │ ├── petg │ │ │ ├── monoprice_select_mini_v2_petg_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_petg_verydraft.inst.cfg │ │ └── pla │ │ │ ├── monoprice_select_mini_v2_pla_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_pla_verydraft.inst.cfg │ ├── normal.inst.cfg │ ├── nps │ │ ├── nps_ABS_A.inst.cfg │ │ ├── nps_ABS_B.inst.cfg │ │ ├── nps_ABS_C.inst.cfg │ │ ├── nps_PC_A.inst.cfg │ │ ├── nps_PC_B.inst.cfg │ │ ├── nps_PC_C.inst.cfg │ │ ├── nps_PETG_A.inst.cfg │ │ ├── nps_PETG_B.inst.cfg │ │ ├── nps_PETG_C.inst.cfg │ │ ├── nps_PLA_A.inst.cfg │ │ ├── nps_PLA_B.inst.cfg │ │ ├── nps_PLA_C.inst.cfg │ │ ├── nps_TPU_A.inst.cfg │ │ ├── nps_TPU_B.inst.cfg │ │ ├── nps_TPU_C.inst.cfg │ │ ├── nps_global_A.inst.cfg │ │ ├── nps_global_B.inst.cfg │ │ └── nps_global_C.inst.cfg │ ├── nwa3d_a31 │ │ ├── nwa3d_a31_best.inst.cfg │ │ ├── nwa3d_a31_e.inst.cfg │ │ ├── nwa3d_a31_fast.inst.cfg │ │ └── nwa3d_a31_normal.inst.cfg │ ├── nwa3d_a5 │ │ ├── nwa3d_a5_best.inst.cfg │ │ ├── nwa3d_a5_fast.inst.cfg │ │ └── nwa3d_a5_normal.inst.cfg │ ├── peopoly_moai │ │ ├── peopoly_moai_coarse.inst.cfg │ │ ├── peopoly_moai_draft.inst.cfg │ │ ├── peopoly_moai_extra_high.inst.cfg │ │ ├── peopoly_moai_high.inst.cfg │ │ └── peopoly_moai_normal.inst.cfg │ ├── ratrig_base │ │ ├── nylon │ │ │ ├── ratrig_base_0.2_Nylon_super.inst.cfg │ │ │ ├── ratrig_base_0.2_Nylon_ultra.inst.cfg │ │ │ ├── ratrig_base_0.3_Nylon_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.3_Nylon_low.inst.cfg │ │ │ ├── ratrig_base_0.3_Nylon_standard.inst.cfg │ │ │ ├── ratrig_base_0.3_Nylon_super.inst.cfg │ │ │ ├── ratrig_base_0.4_Nylon_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.4_Nylon_low.inst.cfg │ │ │ ├── ratrig_base_0.4_Nylon_standard.inst.cfg │ │ │ ├── ratrig_base_0.4_Nylon_super.inst.cfg │ │ │ ├── ratrig_base_0.5_Nylon_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.5_Nylon_low.inst.cfg │ │ │ ├── ratrig_base_0.5_Nylon_standard.inst.cfg │ │ │ ├── ratrig_base_0.5_Nylon_super.inst.cfg │ │ │ ├── ratrig_base_0.6_Nylon_standard.inst.cfg │ │ │ ├── ratrig_base_0.8_Nylon_draft.inst.cfg │ │ │ └── ratrig_base_1.0_Nylon_draft.inst.cfg │ │ ├── petg │ │ │ ├── ratrig_base_0.2_PETG_super.inst.cfg │ │ │ ├── ratrig_base_0.2_PETG_ultra.inst.cfg │ │ │ ├── ratrig_base_0.3_PETG_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.3_PETG_low.inst.cfg │ │ │ ├── ratrig_base_0.3_PETG_standard.inst.cfg │ │ │ ├── ratrig_base_0.3_PETG_super.inst.cfg │ │ │ ├── ratrig_base_0.4_PETG_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.4_PETG_low.inst.cfg │ │ │ ├── ratrig_base_0.4_PETG_standard.inst.cfg │ │ │ ├── ratrig_base_0.4_PETG_super.inst.cfg │ │ │ ├── ratrig_base_0.5_PETG_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.5_PETG_low.inst.cfg │ │ │ ├── ratrig_base_0.5_PETG_standard.inst.cfg │ │ │ ├── ratrig_base_0.5_PETG_super.inst.cfg │ │ │ ├── ratrig_base_0.6_PETG_standard.inst.cfg │ │ │ ├── ratrig_base_0.8_PETG_draft.inst.cfg │ │ │ └── ratrig_base_1.0_PETG_draft.inst.cfg │ │ ├── pla │ │ │ ├── ratrig_base_0.2_PLA_super.inst.cfg │ │ │ ├── ratrig_base_0.2_PLA_ultra.inst.cfg │ │ │ ├── ratrig_base_0.3_PLA_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.3_PLA_low.inst.cfg │ │ │ ├── ratrig_base_0.3_PLA_standard.inst.cfg │ │ │ ├── ratrig_base_0.3_PLA_super.inst.cfg │ │ │ ├── ratrig_base_0.4_PLA_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.4_PLA_low.inst.cfg │ │ │ ├── ratrig_base_0.4_PLA_standard.inst.cfg │ │ │ ├── ratrig_base_0.4_PLA_super.inst.cfg │ │ │ ├── ratrig_base_0.5_PLA_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.5_PLA_low.inst.cfg │ │ │ ├── ratrig_base_0.5_PLA_standard.inst.cfg │ │ │ ├── ratrig_base_0.5_PLA_super.inst.cfg │ │ │ ├── ratrig_base_0.6_PLA_draft.inst.cfg │ │ │ ├── ratrig_base_0.6_PLA_low.inst.cfg │ │ │ ├── ratrig_base_0.6_PLA_standard.inst.cfg │ │ │ ├── ratrig_base_0.8_PLA_draft.inst.cfg │ │ │ └── ratrig_base_1.0_PLA_draft.inst.cfg │ │ ├── ratrig_base_global_adaptive.inst.cfg │ │ ├── ratrig_base_global_draft.inst.cfg │ │ ├── ratrig_base_global_low.inst.cfg │ │ ├── ratrig_base_global_standard.inst.cfg │ │ ├── ratrig_base_global_super.inst.cfg │ │ ├── ratrig_base_global_ultra.inst.cfg │ │ └── tpu │ │ │ ├── ratrig_base_0.3_TPU_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.3_TPU_standard.inst.cfg │ │ │ ├── ratrig_base_0.3_TPU_super.inst.cfg │ │ │ ├── ratrig_base_0.4_TPU_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.4_TPU_standard.inst.cfg │ │ │ ├── ratrig_base_0.4_TPU_super.inst.cfg │ │ │ ├── ratrig_base_0.5_TPU_adaptive.inst.cfg │ │ │ ├── ratrig_base_0.5_TPU_standard.inst.cfg │ │ │ ├── ratrig_base_0.5_TPU_super.inst.cfg │ │ │ ├── ratrig_base_0.6_TPU_standard.inst.cfg │ │ │ ├── ratrig_base_0.8_TPU_draft.inst.cfg │ │ │ └── ratrig_base_1.0_TPU_draft.inst.cfg │ ├── rigid3d_base │ │ ├── abs │ │ │ ├── rigid3d_base_abs_adaptive.inst.cfg │ │ │ ├── rigid3d_base_abs_good.inst.cfg │ │ │ ├── rigid3d_base_abs_low.inst.cfg │ │ │ ├── rigid3d_base_abs_standard.inst.cfg │ │ │ ├── rigid3d_base_abs_super.inst.cfg │ │ │ └── rigid3d_base_abs_ultra.inst.cfg │ │ ├── nylon │ │ │ ├── rigid3d_base_nylon_adaptive.inst.cfg │ │ │ ├── rigid3d_base_nylon_good.inst.cfg │ │ │ ├── rigid3d_base_nylon_low.inst.cfg │ │ │ ├── rigid3d_base_nylon_standard.inst.cfg │ │ │ ├── rigid3d_base_nylon_super.inst.cfg │ │ │ └── rigid3d_base_nylon_ultra.inst.cfg │ │ ├── petg │ │ │ ├── rigid3d_base_petg_adaptive.inst.cfg │ │ │ ├── rigid3d_base_petg_good.inst.cfg │ │ │ ├── rigid3d_base_petg_low.inst.cfg │ │ │ ├── rigid3d_base_petg_standard.inst.cfg │ │ │ ├── rigid3d_base_petg_super.inst.cfg │ │ │ └── rigid3d_base_petg_ultra.inst.cfg │ │ ├── pla │ │ │ ├── rigid3d_base_pla_adaptive.inst.cfg │ │ │ ├── rigid3d_base_pla_good.inst.cfg │ │ │ ├── rigid3d_base_pla_low.inst.cfg │ │ │ ├── rigid3d_base_pla_standard.inst.cfg │ │ │ ├── rigid3d_base_pla_super.inst.cfg │ │ │ └── rigid3d_base_pla_ultra.inst.cfg │ │ ├── rigid3d_base_global_adaptive.inst.cfg │ │ ├── rigid3d_base_global_good.inst.cfg │ │ ├── rigid3d_base_global_low.inst.cfg │ │ ├── rigid3d_base_global_standard.inst.cfg │ │ ├── rigid3d_base_global_super.inst.cfg │ │ ├── rigid3d_base_global_ultra.inst.cfg │ │ └── tpu │ │ │ ├── rigid3d_base_tpu_adaptive.inst.cfg │ │ │ ├── rigid3d_base_tpu_good.inst.cfg │ │ │ ├── rigid3d_base_tpu_low.inst.cfg │ │ │ ├── rigid3d_base_tpu_standard.inst.cfg │ │ │ ├── rigid3d_base_tpu_super.inst.cfg │ │ │ └── rigid3d_base_tpu_ultra.inst.cfg │ ├── skriware_2 │ │ ├── sk2_advanced.inst.cfg │ │ ├── sk2_fast.inst.cfg │ │ └── sk2_precise.inst.cfg │ ├── snakeoilxy │ │ ├── snakeoilxy_global_fast_quality.inst.cfg │ │ ├── snakeoilxy_global_fine_quality.inst.cfg │ │ ├── snakeoilxy_global_normal_quality.inst.cfg │ │ └── snakeoilxy_global_strong_quality.inst.cfg │ ├── snapmaker2 │ │ ├── snapmaker2_fast.inst.cfg │ │ ├── snapmaker2_high.inst.cfg │ │ └── snapmaker2_normal.inst.cfg │ ├── sovol │ │ ├── ABS │ │ │ ├── sovol_bowden_0.2_ABS_super.inst.cfg │ │ │ ├── sovol_bowden_0.2_ABS_ultra.inst.cfg │ │ │ ├── sovol_bowden_0.3_ABS_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.3_ABS_low.inst.cfg │ │ │ ├── sovol_bowden_0.3_ABS_standard.inst.cfg │ │ │ ├── sovol_bowden_0.3_ABS_super.inst.cfg │ │ │ ├── sovol_bowden_0.4_ABS_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.4_ABS_low.inst.cfg │ │ │ ├── sovol_bowden_0.4_ABS_standard.inst.cfg │ │ │ ├── sovol_bowden_0.4_ABS_super.inst.cfg │ │ │ ├── sovol_bowden_0.5_ABS_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.5_ABS_low.inst.cfg │ │ │ ├── sovol_bowden_0.5_ABS_standard.inst.cfg │ │ │ ├── sovol_bowden_0.5_ABS_super.inst.cfg │ │ │ ├── sovol_bowden_0.6_ABS_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.6_ABS_draft.inst.cfg │ │ │ ├── sovol_bowden_0.6_ABS_low.inst.cfg │ │ │ ├── sovol_bowden_0.6_ABS_standard.inst.cfg │ │ │ ├── sovol_bowden_0.8_ABS_draft.inst.cfg │ │ │ ├── sovol_bowden_1.0_ABS_draft.inst.cfg │ │ │ ├── sovol_planetary_0.2_ABS_super.inst.cfg │ │ │ ├── sovol_planetary_0.2_ABS_ultra.inst.cfg │ │ │ ├── sovol_planetary_0.3_ABS_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.3_ABS_low.inst.cfg │ │ │ ├── sovol_planetary_0.3_ABS_standard.inst.cfg │ │ │ ├── sovol_planetary_0.3_ABS_super.inst.cfg │ │ │ ├── sovol_planetary_0.4_ABS_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.4_ABS_low.inst.cfg │ │ │ ├── sovol_planetary_0.4_ABS_standard.inst.cfg │ │ │ ├── sovol_planetary_0.4_ABS_super.inst.cfg │ │ │ ├── sovol_planetary_0.5_ABS_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.5_ABS_low.inst.cfg │ │ │ ├── sovol_planetary_0.5_ABS_standard.inst.cfg │ │ │ ├── sovol_planetary_0.5_ABS_super.inst.cfg │ │ │ ├── sovol_planetary_0.6_ABS_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.6_ABS_draft.inst.cfg │ │ │ ├── sovol_planetary_0.6_ABS_low.inst.cfg │ │ │ ├── sovol_planetary_0.6_ABS_standard.inst.cfg │ │ │ ├── sovol_planetary_0.8_ABS_draft.inst.cfg │ │ │ ├── sovol_planetary_1.0_ABS_draft.inst.cfg │ │ │ ├── sovol_sv08_0.4_ABS_standard.inst.cfg │ │ │ ├── sovol_titan_0.2_ABS_super.inst.cfg │ │ │ ├── sovol_titan_0.2_ABS_ultra.inst.cfg │ │ │ ├── sovol_titan_0.3_ABS_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.3_ABS_low.inst.cfg │ │ │ ├── sovol_titan_0.3_ABS_standard.inst.cfg │ │ │ ├── sovol_titan_0.3_ABS_super.inst.cfg │ │ │ ├── sovol_titan_0.4_ABS_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.4_ABS_low.inst.cfg │ │ │ ├── sovol_titan_0.4_ABS_standard.inst.cfg │ │ │ ├── sovol_titan_0.4_ABS_super.inst.cfg │ │ │ ├── sovol_titan_0.5_ABS_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.5_ABS_low.inst.cfg │ │ │ ├── sovol_titan_0.5_ABS_standard.inst.cfg │ │ │ ├── sovol_titan_0.5_ABS_super.inst.cfg │ │ │ ├── sovol_titan_0.6_ABS_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.6_ABS_draft.inst.cfg │ │ │ ├── sovol_titan_0.6_ABS_low.inst.cfg │ │ │ ├── sovol_titan_0.6_ABS_standard.inst.cfg │ │ │ ├── sovol_titan_0.8_ABS_draft.inst.cfg │ │ │ └── sovol_titan_1.0_ABS_draft.inst.cfg │ │ ├── PETG │ │ │ ├── sovol_bowden_0.2_PETG_super.inst.cfg │ │ │ ├── sovol_bowden_0.2_PETG_ultra.inst.cfg │ │ │ ├── sovol_bowden_0.3_PETG_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.3_PETG_low.inst.cfg │ │ │ ├── sovol_bowden_0.3_PETG_standard.inst.cfg │ │ │ ├── sovol_bowden_0.3_PETG_super.inst.cfg │ │ │ ├── sovol_bowden_0.4_PETG_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.4_PETG_low.inst.cfg │ │ │ ├── sovol_bowden_0.4_PETG_standard.inst.cfg │ │ │ ├── sovol_bowden_0.4_PETG_super.inst.cfg │ │ │ ├── sovol_bowden_0.5_PETG_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.5_PETG_low.inst.cfg │ │ │ ├── sovol_bowden_0.5_PETG_standard.inst.cfg │ │ │ ├── sovol_bowden_0.5_PETG_super.inst.cfg │ │ │ ├── sovol_bowden_0.6_PETG_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.6_PETG_draft.inst.cfg │ │ │ ├── sovol_bowden_0.6_PETG_low.inst.cfg │ │ │ ├── sovol_bowden_0.6_PETG_standard.inst.cfg │ │ │ ├── sovol_bowden_0.8_PETG_draft.inst.cfg │ │ │ ├── sovol_bowden_1.0_PETG_draft.inst.cfg │ │ │ ├── sovol_planetary_0.2_PETG_super.inst.cfg │ │ │ ├── sovol_planetary_0.2_PETG_ultra.inst.cfg │ │ │ ├── sovol_planetary_0.3_PETG_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.3_PETG_low.inst.cfg │ │ │ ├── sovol_planetary_0.3_PETG_standard.inst.cfg │ │ │ ├── sovol_planetary_0.3_PETG_super.inst.cfg │ │ │ ├── sovol_planetary_0.4_PETG_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.4_PETG_low.inst.cfg │ │ │ ├── sovol_planetary_0.4_PETG_standard.inst.cfg │ │ │ ├── sovol_planetary_0.4_PETG_super.inst.cfg │ │ │ ├── sovol_planetary_0.5_PETG_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.5_PETG_low.inst.cfg │ │ │ ├── sovol_planetary_0.5_PETG_standard.inst.cfg │ │ │ ├── sovol_planetary_0.5_PETG_super.inst.cfg │ │ │ ├── sovol_planetary_0.6_PETG_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.6_PETG_draft.inst.cfg │ │ │ ├── sovol_planetary_0.6_PETG_low.inst.cfg │ │ │ ├── sovol_planetary_0.6_PETG_standard.inst.cfg │ │ │ ├── sovol_planetary_0.8_PETG_draft.inst.cfg │ │ │ ├── sovol_planetary_1.0_PETG_draft.inst.cfg │ │ │ ├── sovol_sv08_0.4_PETG_standard.inst.cfg │ │ │ ├── sovol_titan_0.2_PETG_super.inst.cfg │ │ │ ├── sovol_titan_0.2_PETG_ultra.inst.cfg │ │ │ ├── sovol_titan_0.3_PETG_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.3_PETG_low.inst.cfg │ │ │ ├── sovol_titan_0.3_PETG_standard.inst.cfg │ │ │ ├── sovol_titan_0.3_PETG_super.inst.cfg │ │ │ ├── sovol_titan_0.4_PETG_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.4_PETG_low.inst.cfg │ │ │ ├── sovol_titan_0.4_PETG_standard.inst.cfg │ │ │ ├── sovol_titan_0.4_PETG_super.inst.cfg │ │ │ ├── sovol_titan_0.5_PETG_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.5_PETG_low.inst.cfg │ │ │ ├── sovol_titan_0.5_PETG_standard.inst.cfg │ │ │ ├── sovol_titan_0.5_PETG_super.inst.cfg │ │ │ ├── sovol_titan_0.6_PETG_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.6_PETG_draft.inst.cfg │ │ │ ├── sovol_titan_0.6_PETG_low.inst.cfg │ │ │ ├── sovol_titan_0.6_PETG_standard.inst.cfg │ │ │ ├── sovol_titan_0.8_PETG_draft.inst.cfg │ │ │ └── sovol_titan_1.0_PETG_draft.inst.cfg │ │ ├── PLA │ │ │ ├── sovol_bowden_0.2_PLA_super.inst.cfg │ │ │ ├── sovol_bowden_0.2_PLA_ultra.inst.cfg │ │ │ ├── sovol_bowden_0.3_PLA_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.3_PLA_low.inst.cfg │ │ │ ├── sovol_bowden_0.3_PLA_standard.inst.cfg │ │ │ ├── sovol_bowden_0.3_PLA_super.inst.cfg │ │ │ ├── sovol_bowden_0.4_PLA_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.4_PLA_low.inst.cfg │ │ │ ├── sovol_bowden_0.4_PLA_standard.inst.cfg │ │ │ ├── sovol_bowden_0.4_PLA_super.inst.cfg │ │ │ ├── sovol_bowden_0.5_PLA_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.5_PLA_low.inst.cfg │ │ │ ├── sovol_bowden_0.5_PLA_standard.inst.cfg │ │ │ ├── sovol_bowden_0.5_PLA_super.inst.cfg │ │ │ ├── sovol_bowden_0.6_PLA_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.6_PLA_draft.inst.cfg │ │ │ ├── sovol_bowden_0.6_PLA_low.inst.cfg │ │ │ ├── sovol_bowden_0.6_PLA_standard.inst.cfg │ │ │ ├── sovol_bowden_0.8_PLA_draft.inst.cfg │ │ │ ├── sovol_bowden_1.0_PLA_draft.inst.cfg │ │ │ ├── sovol_planetary_0.2_PLA_super.inst.cfg │ │ │ ├── sovol_planetary_0.2_PLA_ultra.inst.cfg │ │ │ ├── sovol_planetary_0.3_PLA_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.3_PLA_low.inst.cfg │ │ │ ├── sovol_planetary_0.3_PLA_standard.inst.cfg │ │ │ ├── sovol_planetary_0.3_PLA_super.inst.cfg │ │ │ ├── sovol_planetary_0.4_PLA_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.4_PLA_low.inst.cfg │ │ │ ├── sovol_planetary_0.4_PLA_standard.inst.cfg │ │ │ ├── sovol_planetary_0.4_PLA_super.inst.cfg │ │ │ ├── sovol_planetary_0.5_PLA_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.5_PLA_low.inst.cfg │ │ │ ├── sovol_planetary_0.5_PLA_standard.inst.cfg │ │ │ ├── sovol_planetary_0.5_PLA_super.inst.cfg │ │ │ ├── sovol_planetary_0.6_PLA_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.6_PLA_draft.inst.cfg │ │ │ ├── sovol_planetary_0.6_PLA_low.inst.cfg │ │ │ ├── sovol_planetary_0.6_PLA_standard.inst.cfg │ │ │ ├── sovol_planetary_0.8_PLA_draft.inst.cfg │ │ │ ├── sovol_planetary_1.0_PLA_draft.inst.cfg │ │ │ ├── sovol_sv08_0.4_PLA_standard.inst.cfg │ │ │ ├── sovol_titan_0.2_PLA_super.inst.cfg │ │ │ ├── sovol_titan_0.2_PLA_ultra.inst.cfg │ │ │ ├── sovol_titan_0.3_PLA_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.3_PLA_low.inst.cfg │ │ │ ├── sovol_titan_0.3_PLA_standard.inst.cfg │ │ │ ├── sovol_titan_0.3_PLA_super.inst.cfg │ │ │ ├── sovol_titan_0.4_PLA_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.4_PLA_low.inst.cfg │ │ │ ├── sovol_titan_0.4_PLA_standard.inst.cfg │ │ │ ├── sovol_titan_0.4_PLA_super.inst.cfg │ │ │ ├── sovol_titan_0.5_PLA_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.5_PLA_low.inst.cfg │ │ │ ├── sovol_titan_0.5_PLA_standard.inst.cfg │ │ │ ├── sovol_titan_0.5_PLA_super.inst.cfg │ │ │ ├── sovol_titan_0.6_PLA_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.6_PLA_draft.inst.cfg │ │ │ ├── sovol_titan_0.6_PLA_low.inst.cfg │ │ │ ├── sovol_titan_0.6_PLA_standard.inst.cfg │ │ │ ├── sovol_titan_0.8_PLA_draft.inst.cfg │ │ │ └── sovol_titan_1.0_PLA_draft.inst.cfg │ │ ├── TPU │ │ │ ├── sovol_bowden_0.3_TPU_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.3_TPU_standard.inst.cfg │ │ │ ├── sovol_bowden_0.3_TPU_super.inst.cfg │ │ │ ├── sovol_bowden_0.4_TPU_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.4_TPU_standard.inst.cfg │ │ │ ├── sovol_bowden_0.4_TPU_super.inst.cfg │ │ │ ├── sovol_bowden_0.5_TPU_adaptive.inst.cfg │ │ │ ├── sovol_bowden_0.5_TPU_standard.inst.cfg │ │ │ ├── sovol_bowden_0.5_TPU_super.inst.cfg │ │ │ ├── sovol_bowden_0.6_TPU_standard.inst.cfg │ │ │ ├── sovol_bowden_0.8_TPU_draft.inst.cfg │ │ │ ├── sovol_bowden_1.0_TPU_draft.inst.cfg │ │ │ ├── sovol_planetary_0.3_TPU_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.3_TPU_standard.inst.cfg │ │ │ ├── sovol_planetary_0.3_TPU_super.inst.cfg │ │ │ ├── sovol_planetary_0.4_TPU_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.4_TPU_standard.inst.cfg │ │ │ ├── sovol_planetary_0.4_TPU_super.inst.cfg │ │ │ ├── sovol_planetary_0.5_TPU_adaptive.inst.cfg │ │ │ ├── sovol_planetary_0.5_TPU_standard.inst.cfg │ │ │ ├── sovol_planetary_0.5_TPU_super.inst.cfg │ │ │ ├── sovol_planetary_0.6_TPU_standard.inst.cfg │ │ │ ├── sovol_planetary_0.8_TPU_draft.inst.cfg │ │ │ ├── sovol_planetary_1.0_TPU_draft.inst.cfg │ │ │ ├── sovol_sv08_0.4_TPU_standard.inst.cfg │ │ │ ├── sovol_titan_0.3_TPU_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.3_TPU_standard.inst.cfg │ │ │ ├── sovol_titan_0.3_TPU_super.inst.cfg │ │ │ ├── sovol_titan_0.4_TPU_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.4_TPU_standard.inst.cfg │ │ │ ├── sovol_titan_0.4_TPU_super.inst.cfg │ │ │ ├── sovol_titan_0.5_TPU_adaptive.inst.cfg │ │ │ ├── sovol_titan_0.5_TPU_standard.inst.cfg │ │ │ ├── sovol_titan_0.5_TPU_super.inst.cfg │ │ │ ├── sovol_titan_0.6_TPU_standard.inst.cfg │ │ │ ├── sovol_titan_0.8_TPU_draft.inst.cfg │ │ │ └── sovol_titan_1.0_TPU_draft.inst.cfg │ │ ├── sovol_bowden_global_adaptive.inst.cfg │ │ ├── sovol_bowden_global_draft.inst.cfg │ │ ├── sovol_bowden_global_low.inst.cfg │ │ ├── sovol_bowden_global_standard.inst.cfg │ │ ├── sovol_bowden_global_super.inst.cfg │ │ ├── sovol_bowden_global_ultra.inst.cfg │ │ ├── sovol_planetary_global_adaptive.inst.cfg │ │ ├── sovol_planetary_global_draft.inst.cfg │ │ ├── sovol_planetary_global_low.inst.cfg │ │ ├── sovol_planetary_global_standard.inst.cfg │ │ ├── sovol_planetary_global_super.inst.cfg │ │ ├── sovol_planetary_global_ultra.inst.cfg │ │ ├── sovol_sv08_global.inst.cfg │ │ ├── sovol_titan_global_adaptive.inst.cfg │ │ ├── sovol_titan_global_draft.inst.cfg │ │ ├── sovol_titan_global_low.inst.cfg │ │ ├── sovol_titan_global_standard.inst.cfg │ │ ├── sovol_titan_global_super.inst.cfg │ │ └── sovol_titan_global_ultra.inst.cfg │ ├── strateo3d │ │ ├── HT0_4 │ │ │ ├── s3d_ht0.4_ABS-X_A.inst.cfg │ │ │ ├── s3d_ht0.4_ABS-X_B.inst.cfg │ │ │ ├── s3d_ht0.4_ABS-X_C.inst.cfg │ │ │ ├── s3d_ht0.4_ABS_A.inst.cfg │ │ │ ├── s3d_ht0.4_ABS_B.inst.cfg │ │ │ ├── s3d_ht0.4_ABS_C.inst.cfg │ │ │ ├── s3d_ht0.4_ACETATE_A.inst.cfg │ │ │ ├── s3d_ht0.4_ACETATE_B.inst.cfg │ │ │ ├── s3d_ht0.4_ACETATE_C.inst.cfg │ │ │ ├── s3d_ht0.4_ASA-X_A.inst.cfg │ │ │ ├── s3d_ht0.4_ASA-X_B.inst.cfg │ │ │ ├── s3d_ht0.4_ASA-X_C.inst.cfg │ │ │ ├── s3d_ht0.4_COPA_A.inst.cfg │ │ │ ├── s3d_ht0.4_COPA_B.inst.cfg │ │ │ ├── s3d_ht0.4_COPA_C.inst.cfg │ │ │ ├── s3d_ht0.4_HIPS_A.inst.cfg │ │ │ ├── s3d_ht0.4_HIPS_B.inst.cfg │ │ │ ├── s3d_ht0.4_HIPS_C.inst.cfg │ │ │ ├── s3d_ht0.4_PC_A.inst.cfg │ │ │ ├── s3d_ht0.4_PC_B.inst.cfg │ │ │ ├── s3d_ht0.4_PC_C.inst.cfg │ │ │ ├── s3d_ht0.4_PEKK_B.inst.cfg │ │ │ ├── s3d_ht0.4_PETG_A.inst.cfg │ │ │ ├── s3d_ht0.4_PETG_B.inst.cfg │ │ │ ├── s3d_ht0.4_PETG_C.inst.cfg │ │ │ ├── s3d_ht0.4_PLA_A.inst.cfg │ │ │ ├── s3d_ht0.4_PLA_B.inst.cfg │ │ │ ├── s3d_ht0.4_PLA_C.inst.cfg │ │ │ ├── s3d_ht0.4_PLA_HT_A.inst.cfg │ │ │ ├── s3d_ht0.4_PLA_HT_B.inst.cfg │ │ │ ├── s3d_ht0.4_PLA_HT_C.inst.cfg │ │ │ ├── s3d_ht0.4_TPU98A_A.inst.cfg │ │ │ ├── s3d_ht0.4_TPU98A_B.inst.cfg │ │ │ └── s3d_ht0.4_TPU98A_C.inst.cfg │ │ ├── Standard_0_4 │ │ │ ├── s3d_std0.4_ABS-X_A.inst.cfg │ │ │ ├── s3d_std0.4_ABS-X_B.inst.cfg │ │ │ ├── s3d_std0.4_ABS-X_C.inst.cfg │ │ │ ├── s3d_std0.4_ABS_A.inst.cfg │ │ │ ├── s3d_std0.4_ABS_B.inst.cfg │ │ │ ├── s3d_std0.4_ABS_C.inst.cfg │ │ │ ├── s3d_std0.4_ACETATE_A.inst.cfg │ │ │ ├── s3d_std0.4_ACETATE_B.inst.cfg │ │ │ ├── s3d_std0.4_ACETATE_C.inst.cfg │ │ │ ├── s3d_std0.4_ASA-X_A.inst.cfg │ │ │ ├── s3d_std0.4_ASA-X_B.inst.cfg │ │ │ ├── s3d_std0.4_ASA-X_C.inst.cfg │ │ │ ├── s3d_std0.4_BVOH_A.inst.cfg │ │ │ ├── s3d_std0.4_BVOH_B.inst.cfg │ │ │ ├── s3d_std0.4_BVOH_C.inst.cfg │ │ │ ├── s3d_std0.4_COPA_A.inst.cfg │ │ │ ├── s3d_std0.4_COPA_B.inst.cfg │ │ │ ├── s3d_std0.4_COPA_C.inst.cfg │ │ │ ├── s3d_std0.4_HIPS_A.inst.cfg │ │ │ ├── s3d_std0.4_HIPS_B.inst.cfg │ │ │ ├── s3d_std0.4_HIPS_C.inst.cfg │ │ │ ├── s3d_std0.4_PA6CF_A.inst.cfg │ │ │ ├── s3d_std0.4_PA6CF_B.inst.cfg │ │ │ ├── s3d_std0.4_PA6CF_C.inst.cfg │ │ │ ├── s3d_std0.4_PA6GF_A.inst.cfg │ │ │ ├── s3d_std0.4_PA6GF_B.inst.cfg │ │ │ ├── s3d_std0.4_PA6GF_C.inst.cfg │ │ │ ├── s3d_std0.4_PC_A.inst.cfg │ │ │ ├── s3d_std0.4_PC_B.inst.cfg │ │ │ ├── s3d_std0.4_PC_C.inst.cfg │ │ │ ├── s3d_std0.4_PETG_A.inst.cfg │ │ │ ├── s3d_std0.4_PETG_B.inst.cfg │ │ │ ├── s3d_std0.4_PETG_C.inst.cfg │ │ │ ├── s3d_std0.4_PLA_A.inst.cfg │ │ │ ├── s3d_std0.4_PLA_B.inst.cfg │ │ │ ├── s3d_std0.4_PLA_C.inst.cfg │ │ │ ├── s3d_std0.4_PLA_HT_A.inst.cfg │ │ │ ├── s3d_std0.4_PLA_HT_B.inst.cfg │ │ │ ├── s3d_std0.4_PLA_HT_C.inst.cfg │ │ │ ├── s3d_std0.4_PVA-M_A.inst.cfg │ │ │ ├── s3d_std0.4_PVA-M_B.inst.cfg │ │ │ ├── s3d_std0.4_PVA-M_C.inst.cfg │ │ │ ├── s3d_std0.4_PVA-S_A.inst.cfg │ │ │ ├── s3d_std0.4_PVA-S_B.inst.cfg │ │ │ ├── s3d_std0.4_PVA-S_C.inst.cfg │ │ │ ├── s3d_std0.4_TPU98A_A.inst.cfg │ │ │ ├── s3d_std0.4_TPU98A_B.inst.cfg │ │ │ └── s3d_std0.4_TPU98A_C.inst.cfg │ │ ├── Standard_0_6 │ │ │ ├── s3d_std0.6_ABS-X_B.inst.cfg │ │ │ ├── s3d_std0.6_ABS-X_C.inst.cfg │ │ │ ├── s3d_std0.6_ABS-X_D.inst.cfg │ │ │ ├── s3d_std0.6_ABS_B.inst.cfg │ │ │ ├── s3d_std0.6_ABS_C.inst.cfg │ │ │ ├── s3d_std0.6_ABS_D.inst.cfg │ │ │ ├── s3d_std0.6_ACETATE_B.inst.cfg │ │ │ ├── s3d_std0.6_ACETATE_C.inst.cfg │ │ │ ├── s3d_std0.6_ACETATE_D.inst.cfg │ │ │ ├── s3d_std0.6_ASA-X_B.inst.cfg │ │ │ ├── s3d_std0.6_ASA-X_C.inst.cfg │ │ │ ├── s3d_std0.6_ASA-X_D.inst.cfg │ │ │ ├── s3d_std0.6_BVOH_B.inst.cfg │ │ │ ├── s3d_std0.6_BVOH_C.inst.cfg │ │ │ ├── s3d_std0.6_BVOH_D.inst.cfg │ │ │ ├── s3d_std0.6_COPA_B.inst.cfg │ │ │ ├── s3d_std0.6_COPA_C.inst.cfg │ │ │ ├── s3d_std0.6_COPA_D.inst.cfg │ │ │ ├── s3d_std0.6_HIPS_B.inst.cfg │ │ │ ├── s3d_std0.6_HIPS_C.inst.cfg │ │ │ ├── s3d_std0.6_HIPS_D.inst.cfg │ │ │ ├── s3d_std0.6_Nylon-1030_C.inst.cfg │ │ │ ├── s3d_std0.6_PA6CF_B.inst.cfg │ │ │ ├── s3d_std0.6_PA6CF_C.inst.cfg │ │ │ ├── s3d_std0.6_PA6CF_D.inst.cfg │ │ │ ├── s3d_std0.6_PA6GF_B.inst.cfg │ │ │ ├── s3d_std0.6_PA6GF_C.inst.cfg │ │ │ ├── s3d_std0.6_PA6GF_D.inst.cfg │ │ │ ├── s3d_std0.6_PC_B.inst.cfg │ │ │ ├── s3d_std0.6_PC_C.inst.cfg │ │ │ ├── s3d_std0.6_PC_D.inst.cfg │ │ │ ├── s3d_std0.6_PETG_B.inst.cfg │ │ │ ├── s3d_std0.6_PETG_C.inst.cfg │ │ │ ├── s3d_std0.6_PETG_D.inst.cfg │ │ │ ├── s3d_std0.6_PLA_B.inst.cfg │ │ │ ├── s3d_std0.6_PLA_C.inst.cfg │ │ │ ├── s3d_std0.6_PLA_D.inst.cfg │ │ │ ├── s3d_std0.6_PLA_HT_B.inst.cfg │ │ │ ├── s3d_std0.6_PLA_HT_C.inst.cfg │ │ │ ├── s3d_std0.6_PLA_HT_D.inst.cfg │ │ │ ├── s3d_std0.6_PVA-M_B.inst.cfg │ │ │ ├── s3d_std0.6_PVA-M_C.inst.cfg │ │ │ ├── s3d_std0.6_PVA-M_D.inst.cfg │ │ │ ├── s3d_std0.6_PVA-S_B.inst.cfg │ │ │ ├── s3d_std0.6_PVA-S_C.inst.cfg │ │ │ ├── s3d_std0.6_PVA-S_D.inst.cfg │ │ │ ├── s3d_std0.6_TPU98A_B.inst.cfg │ │ │ ├── s3d_std0.6_TPU98A_C.inst.cfg │ │ │ └── s3d_std0.6_TPU98A_D.inst.cfg │ │ ├── Standard_0_8 │ │ │ ├── s3d_std0.8_ABS-X_C.inst.cfg │ │ │ ├── s3d_std0.8_ABS-X_D.inst.cfg │ │ │ ├── s3d_std0.8_ABS-X_E.inst.cfg │ │ │ ├── s3d_std0.8_ABS_C.inst.cfg │ │ │ ├── s3d_std0.8_ABS_D.inst.cfg │ │ │ ├── s3d_std0.8_ABS_E.inst.cfg │ │ │ ├── s3d_std0.8_ASA-X_C.inst.cfg │ │ │ ├── s3d_std0.8_ASA-X_D.inst.cfg │ │ │ ├── s3d_std0.8_ASA-X_E.inst.cfg │ │ │ ├── s3d_std0.8_BVOH_C.inst.cfg │ │ │ ├── s3d_std0.8_BVOH_D.inst.cfg │ │ │ ├── s3d_std0.8_BVOH_E.inst.cfg │ │ │ ├── s3d_std0.8_COPA_C.inst.cfg │ │ │ ├── s3d_std0.8_COPA_D.inst.cfg │ │ │ ├── s3d_std0.8_COPA_E.inst.cfg │ │ │ ├── s3d_std0.8_HIPS_C.inst.cfg │ │ │ ├── s3d_std0.8_HIPS_D.inst.cfg │ │ │ ├── s3d_std0.8_HIPS_E.inst.cfg │ │ │ ├── s3d_std0.8_PA6CF_C.inst.cfg │ │ │ ├── s3d_std0.8_PA6CF_D.inst.cfg │ │ │ ├── s3d_std0.8_PA6CF_E.inst.cfg │ │ │ ├── s3d_std0.8_PA6GF_C.inst.cfg │ │ │ ├── s3d_std0.8_PA6GF_D.inst.cfg │ │ │ ├── s3d_std0.8_PA6GF_E.inst.cfg │ │ │ ├── s3d_std0.8_PC_C.inst.cfg │ │ │ ├── s3d_std0.8_PC_D.inst.cfg │ │ │ ├── s3d_std0.8_PC_E.inst.cfg │ │ │ ├── s3d_std0.8_PETG_C.inst.cfg │ │ │ ├── s3d_std0.8_PETG_D.inst.cfg │ │ │ ├── s3d_std0.8_PETG_E.inst.cfg │ │ │ ├── s3d_std0.8_PLA_C.inst.cfg │ │ │ ├── s3d_std0.8_PLA_D.inst.cfg │ │ │ ├── s3d_std0.8_PLA_E.inst.cfg │ │ │ ├── s3d_std0.8_PLA_HT_C.inst.cfg │ │ │ ├── s3d_std0.8_PLA_HT_D.inst.cfg │ │ │ ├── s3d_std0.8_PLA_HT_E.inst.cfg │ │ │ ├── s3d_std0.8_PVA-M_C.inst.cfg │ │ │ ├── s3d_std0.8_PVA-M_D.inst.cfg │ │ │ ├── s3d_std0.8_PVA-M_E.inst.cfg │ │ │ ├── s3d_std0.8_PVA-S_C.inst.cfg │ │ │ ├── s3d_std0.8_PVA-S_D.inst.cfg │ │ │ ├── s3d_std0.8_PVA-S_E.inst.cfg │ │ │ ├── s3d_std0.8_TPU98A_C.inst.cfg │ │ │ ├── s3d_std0.8_TPU98A_D.inst.cfg │ │ │ ├── s3d_std0.8_TPU98A_E.inst.cfg │ │ │ ├── s3d_std0.8_TPU_C.inst.cfg │ │ │ ├── s3d_std0.8_TPU_D.inst.cfg │ │ │ └── s3d_std0.8_TPU_E.inst.cfg │ │ ├── Standard_1_0_Experimental │ │ │ ├── s3d_std1.0_ABS_D.inst.cfg │ │ │ ├── s3d_std1.0_ABS_E.inst.cfg │ │ │ ├── s3d_std1.0_ABS_F.inst.cfg │ │ │ ├── s3d_std1.0_ASA-X_D.inst.cfg │ │ │ ├── s3d_std1.0_ASA-X_E.inst.cfg │ │ │ ├── s3d_std1.0_ASA-X_F.inst.cfg │ │ │ ├── s3d_std1.0_BVOH_D.inst.cfg │ │ │ ├── s3d_std1.0_BVOH_E.inst.cfg │ │ │ ├── s3d_std1.0_BVOH_F.inst.cfg │ │ │ ├── s3d_std1.0_HIPS_D.inst.cfg │ │ │ ├── s3d_std1.0_HIPS_E.inst.cfg │ │ │ ├── s3d_std1.0_HIPS_F.inst.cfg │ │ │ ├── s3d_std1.0_PA6CF_D.inst.cfg │ │ │ ├── s3d_std1.0_PA6CF_E.inst.cfg │ │ │ ├── s3d_std1.0_PA6CF_F.inst.cfg │ │ │ ├── s3d_std1.0_PA6GF_D.inst.cfg │ │ │ ├── s3d_std1.0_PA6GF_E.inst.cfg │ │ │ ├── s3d_std1.0_PA6GF_F.inst.cfg │ │ │ ├── s3d_std1.0_PETG_D.inst.cfg │ │ │ ├── s3d_std1.0_PETG_E.inst.cfg │ │ │ ├── s3d_std1.0_PETG_F.inst.cfg │ │ │ ├── s3d_std1.0_PLA_D.inst.cfg │ │ │ ├── s3d_std1.0_PLA_E.inst.cfg │ │ │ ├── s3d_std1.0_PLA_F.inst.cfg │ │ │ ├── s3d_std1.0_PVA-M_D.inst.cfg │ │ │ ├── s3d_std1.0_PVA-M_E.inst.cfg │ │ │ ├── s3d_std1.0_PVA-M_F.inst.cfg │ │ │ ├── s3d_std1.0_PVA-S_D.inst.cfg │ │ │ ├── s3d_std1.0_PVA-S_E.inst.cfg │ │ │ ├── s3d_std1.0_PVA-S_F.inst.cfg │ │ │ ├── s3d_std1.0_TPU98A_D.inst.cfg │ │ │ ├── s3d_std1.0_TPU98A_E.inst.cfg │ │ │ └── s3d_std1.0_TPU98A_F.inst.cfg │ │ ├── Standard_1_2_Experimental │ │ │ ├── s3d_std1.2_ABS_F.inst.cfg │ │ │ ├── s3d_std1.2_ABS_G.inst.cfg │ │ │ ├── s3d_std1.2_ABS_H.inst.cfg │ │ │ ├── s3d_std1.2_ASA-X_F.inst.cfg │ │ │ ├── s3d_std1.2_ASA-X_G.inst.cfg │ │ │ ├── s3d_std1.2_ASA-X_H.inst.cfg │ │ │ ├── s3d_std1.2_BVOH_F.inst.cfg │ │ │ ├── s3d_std1.2_BVOH_G.inst.cfg │ │ │ ├── s3d_std1.2_BVOH_H.inst.cfg │ │ │ ├── s3d_std1.2_HIPS_F.inst.cfg │ │ │ ├── s3d_std1.2_HIPS_G.inst.cfg │ │ │ ├── s3d_std1.2_HIPS_H.inst.cfg │ │ │ ├── s3d_std1.2_PA6CF_F.inst.cfg │ │ │ ├── s3d_std1.2_PA6CF_G.inst.cfg │ │ │ ├── s3d_std1.2_PA6CF_H.inst.cfg │ │ │ ├── s3d_std1.2_PA6GF_F.inst.cfg │ │ │ ├── s3d_std1.2_PA6GF_G.inst.cfg │ │ │ ├── s3d_std1.2_PA6GF_H.inst.cfg │ │ │ ├── s3d_std1.2_PETG_F.inst.cfg │ │ │ ├── s3d_std1.2_PETG_G.inst.cfg │ │ │ ├── s3d_std1.2_PETG_H.inst.cfg │ │ │ ├── s3d_std1.2_PLA_F.inst.cfg │ │ │ ├── s3d_std1.2_PLA_G.inst.cfg │ │ │ ├── s3d_std1.2_PLA_H.inst.cfg │ │ │ ├── s3d_std1.2_PVA-M_F.inst.cfg │ │ │ ├── s3d_std1.2_PVA-M_G.inst.cfg │ │ │ ├── s3d_std1.2_PVA-M_H.inst.cfg │ │ │ ├── s3d_std1.2_PVA-S_F.inst.cfg │ │ │ ├── s3d_std1.2_PVA-S_G.inst.cfg │ │ │ ├── s3d_std1.2_PVA-S_H.inst.cfg │ │ │ ├── s3d_std1.2_TPU98A_F.inst.cfg │ │ │ ├── s3d_std1.2_TPU98A_G.inst.cfg │ │ │ └── s3d_std1.2_TPU98A_H.inst.cfg │ │ ├── s3d_global_A.inst.cfg │ │ ├── s3d_global_B.inst.cfg │ │ ├── s3d_global_C.inst.cfg │ │ ├── s3d_global_D.inst.cfg │ │ ├── s3d_global_E.inst.cfg │ │ ├── s3d_global_F.inst.cfg │ │ ├── s3d_global_G.inst.cfg │ │ └── s3d_global_H.inst.cfg │ ├── strateo3d_IDEX420 │ │ ├── Standard_0_4 │ │ │ ├── s3d_IDEX420_std0.4_ABS-X_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ABS-X_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ABS-X_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ABS_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ABS_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ABS_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ACETATE_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ACETATE_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ACETATE_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ASA-X_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ASA-X_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_ASA-X_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_BVOH_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_BVOH_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_BVOH_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_COPA_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_COPA_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_COPA_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_HIPS_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_HIPS_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_HIPS_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PA6CF_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PA6CF_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PA6CF_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PA6GF_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PA6GF_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PA6GF_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PC_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PC_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PC_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PETG_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PETG_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PETG_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PLA_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PLA_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PLA_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PVA-M_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PVA-M_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PVA-M_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PVA-S_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PVA-S_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_PVA-S_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_TPU98A_A.inst.cfg │ │ │ ├── s3d_IDEX420_std0.4_TPU98A_B.inst.cfg │ │ │ └── s3d_IDEX420_std0.4_TPU98A_C.inst.cfg │ │ ├── Standard_0_6 │ │ │ ├── s3d_IDEX420_std0.6_ABS-X_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ABS-X_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ABS-X_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ABS_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ABS_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ABS_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ACETATE_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ACETATE_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ACETATE_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ASA-X_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ASA-X_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_ASA-X_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_BVOH_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_BVOH_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_BVOH_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_COPA_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_COPA_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_COPA_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_HIPS_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_HIPS_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_HIPS_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PA6CF_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PA6CF_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PA6CF_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PA6GF_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PA6GF_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PA6GF_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PC_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PC_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PC_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PETG_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PETG_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PETG_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PLA_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PLA_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PLA_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PVA-M_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PVA-M_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PVA-M_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PVA-S_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PVA-S_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_PVA-S_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_TPU98A_B.inst.cfg │ │ │ ├── s3d_IDEX420_std0.6_TPU98A_C.inst.cfg │ │ │ └── s3d_IDEX420_std0.6_TPU98A_D.inst.cfg │ │ ├── Standard_0_8 │ │ │ ├── s3d_IDEX420_std0.8_ABS-X_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ABS-X_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ABS-X_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ABS_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ABS_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ABS_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ASA-X_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ASA-X_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_ASA-X_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_BVOH_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_BVOH_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_BVOH_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_COPA_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_COPA_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_COPA_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_HIPS_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_HIPS_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_HIPS_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PA6CF_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PA6CF_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PA6CF_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PA6GF_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PA6GF_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PA6GF_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PC_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PC_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PC_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PETG_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PETG_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PETG_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PLA_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PLA_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PLA_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PVA-M_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PVA-M_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PVA-M_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PVA-S_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PVA-S_D.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_PVA-S_E.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_TPU98A_C.inst.cfg │ │ │ ├── s3d_IDEX420_std0.8_TPU98A_D.inst.cfg │ │ │ └── s3d_IDEX420_std0.8_TPU98A_E.inst.cfg │ │ ├── s3d_IDEX420_global_A.inst.cfg │ │ ├── s3d_IDEX420_global_B.inst.cfg │ │ ├── s3d_IDEX420_global_C.inst.cfg │ │ ├── s3d_IDEX420_global_D.inst.cfg │ │ └── s3d_IDEX420_global_E.inst.cfg │ ├── tank_m_base_global_draft.inst.cfg │ ├── tank_m_base_global_high.inst.cfg │ ├── tank_m_base_global_standard.inst.cfg │ ├── tevo_blackwidow │ │ ├── tevo_blackwidow_draft.inst.cfg │ │ ├── tevo_blackwidow_high.inst.cfg │ │ └── tevo_blackwidow_normal.inst.cfg │ ├── tinyboy │ │ ├── tinyboy_e10_draft.inst.cfg │ │ ├── tinyboy_e10_high.inst.cfg │ │ ├── tinyboy_e10_normal.inst.cfg │ │ ├── tinyboy_e16_draft.inst.cfg │ │ ├── tinyboy_e16_high.inst.cfg │ │ ├── tinyboy_e16_normal.inst.cfg │ │ ├── tinyboy_fabrikator15_draft.inst.cfg │ │ ├── tinyboy_fabrikator15_high.inst.cfg │ │ ├── tinyboy_fabrikator15_normal.inst.cfg │ │ ├── tinyboy_ra20_draft.inst.cfg │ │ ├── tinyboy_ra20_high.inst.cfg │ │ └── tinyboy_ra20_normal.inst.cfg │ ├── tizyx │ │ ├── tizyx_evy │ │ │ ├── abs │ │ │ │ ├── tizyx_evy_0.2_abs_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.3_abs_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_abs_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_abs_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_abs_draft.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_abs_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_abs_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_abs_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_abs_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_abs_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_abs_extra_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_abs_high.inst.cfg │ │ │ │ └── tizyx_evy_0.8_abs_normal.inst.cfg │ │ │ ├── flex │ │ │ │ ├── tizyx_evy_0.2_flex_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.3_flex_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_flex_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_flex_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_flex_draft.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_flex_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_flex_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_flex_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_flex_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_flex_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_flex_extra_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_flex_high.inst.cfg │ │ │ │ └── tizyx_evy_0.8_flex_normal.inst.cfg │ │ │ ├── petg │ │ │ │ ├── tizyx_evy_0.2_petg_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.3_petg_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_petg_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_petg_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_petg_draft.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_petg_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_petg_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_petg_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_petg_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_petg_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_petg_extra_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_petg_high.inst.cfg │ │ │ │ └── tizyx_evy_0.8_petg_normal.inst.cfg │ │ │ ├── pla │ │ │ │ ├── tizyx_evy_0.2_pla_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.3_pla_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_pla_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_pla_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_pla_draft.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_pla_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_pla_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_pla_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_pla_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_pla_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_pla_extra_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_pla_high.inst.cfg │ │ │ │ └── tizyx_evy_0.8_pla_normal.inst.cfg │ │ │ ├── pla_bois │ │ │ │ ├── tizyx_evy_0.2_pla_bois_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.3_pla_bois_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_pla_bois_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.4_pla_bois_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_pla_bois_draft.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_pla_bois_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.5_pla_bois_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_pla_bois_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_pla_bois_high.inst.cfg │ │ │ │ ├── tizyx_evy_0.6_pla_bois_normal.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg │ │ │ │ ├── tizyx_evy_0.8_pla_bois_high.inst.cfg │ │ │ │ └── tizyx_evy_0.8_pla_bois_normal.inst.cfg │ │ │ ├── tizyx_evy_global_Coarse_Quality.inst.cfg │ │ │ ├── tizyx_evy_global_Draft_Quality.inst.cfg │ │ │ ├── tizyx_evy_global_Extra_Coarse_Quality.inst.cfg │ │ │ ├── tizyx_evy_global_High_Quality.inst.cfg │ │ │ └── tizyx_evy_global_Normal_Quality.inst.cfg │ │ ├── tizyx_evy_dual │ │ │ ├── abs │ │ │ │ ├── tizyx_evy_dual_classic_abs_high.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_abs_normal.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_abs_high.inst.cfg │ │ │ │ └── tizyx_evy_dual_direct_drive_abs_normal.inst.cfg │ │ │ ├── flex │ │ │ │ ├── tizyx_evy_dual_classic_flex_flex.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_flex_flex_only.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_flex_flex.inst.cfg │ │ │ │ └── tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg │ │ │ ├── petg │ │ │ │ ├── tizyx_evy_dual_classic_petg_high.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_petg_normal.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_petg_high.inst.cfg │ │ │ │ └── tizyx_evy_dual_direct_drive_petg_normal.inst.cfg │ │ │ ├── pla │ │ │ │ ├── tizyx_evy_dual_classic_pla_flex.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_pla_flex_only.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_pla_high.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_pla_normal.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_pla_pva.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_pla_flex.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_pla_high.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_pla_normal.inst.cfg │ │ │ │ └── tizyx_evy_dual_direct_drive_pla_pva.inst.cfg │ │ │ ├── pla_bois │ │ │ │ ├── tizyx_evy_dual_classic_pla_bois_flex.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_pla_bois_high.inst.cfg │ │ │ │ ├── tizyx_evy_dual_classic_pla_bois_normal.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg │ │ │ │ ├── tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg │ │ │ │ └── tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg │ │ │ ├── pva │ │ │ │ ├── tizyx_evy_dual_classic_pva_pva.inst.cfg │ │ │ │ └── tizyx_evy_dual_direct_drive_pva_pva.inst.cfg │ │ │ ├── tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg │ │ │ ├── tizyx_evy_dual_global_Flex_Quality.inst.cfg │ │ │ ├── tizyx_evy_dual_global_High_Quality.inst.cfg │ │ │ ├── tizyx_evy_dual_global_Normal_Quality.inst.cfg │ │ │ └── tizyx_evy_dual_global_PVA_Quality.inst.cfg │ │ └── tizyx_k25 │ │ │ ├── tizyx_k25_high.inst.cfg │ │ │ └── tizyx_k25_normal.inst.cfg │ ├── trimaker_cosmosII │ │ ├── trimaker_cosmosII_fast.inst.cfg │ │ ├── trimaker_cosmosII_normal.inst.cfg │ │ └── trimaker_cosmosII_slow.inst.cfg │ ├── trimaker_nebula │ │ ├── trimaker_nebula_fast.inst.cfg │ │ ├── trimaker_nebula_normal.inst.cfg │ │ └── trimaker_nebula_slow.inst.cfg │ ├── tronxy │ │ ├── tronxy_0.2_ABS_extra.inst.cfg │ │ ├── tronxy_0.2_ABS_fine.inst.cfg │ │ ├── tronxy_0.2_ABS_super.inst.cfg │ │ ├── tronxy_0.2_PETG_extra.inst.cfg │ │ ├── tronxy_0.2_PETG_fine.inst.cfg │ │ ├── tronxy_0.2_PETG_super.inst.cfg │ │ ├── tronxy_0.2_PLA_extra.inst.cfg │ │ ├── tronxy_0.2_PLA_fine.inst.cfg │ │ ├── tronxy_0.2_PLA_super.inst.cfg │ │ ├── tronxy_0.3_ABS_extra.inst.cfg │ │ ├── tronxy_0.3_ABS_fine.inst.cfg │ │ ├── tronxy_0.3_ABS_low.inst.cfg │ │ ├── tronxy_0.3_ABS_normal.inst.cfg │ │ ├── tronxy_0.3_PETG_extra.inst.cfg │ │ ├── tronxy_0.3_PETG_fine.inst.cfg │ │ ├── tronxy_0.3_PETG_low.inst.cfg │ │ ├── tronxy_0.3_PETG_normal.inst.cfg │ │ ├── tronxy_0.3_PLA_extra.inst.cfg │ │ ├── tronxy_0.3_PLA_fine.inst.cfg │ │ ├── tronxy_0.3_PLA_low.inst.cfg │ │ ├── tronxy_0.3_PLA_normal.inst.cfg │ │ ├── tronxy_0.3_TPU_extra.inst.cfg │ │ ├── tronxy_0.3_TPU_fine.inst.cfg │ │ ├── tronxy_0.3_TPU_normal.inst.cfg │ │ ├── tronxy_0.4_ABS_extra.inst.cfg │ │ ├── tronxy_0.4_ABS_fine.inst.cfg │ │ ├── tronxy_0.4_ABS_low.inst.cfg │ │ ├── tronxy_0.4_ABS_normal.inst.cfg │ │ ├── tronxy_0.4_ABS_rough.inst.cfg │ │ ├── tronxy_0.4_PETG_extra.inst.cfg │ │ ├── tronxy_0.4_PETG_fine.inst.cfg │ │ ├── tronxy_0.4_PETG_low.inst.cfg │ │ ├── tronxy_0.4_PETG_normal.inst.cfg │ │ ├── tronxy_0.4_PETG_rough.inst.cfg │ │ ├── tronxy_0.4_PLA_extra.inst.cfg │ │ ├── tronxy_0.4_PLA_fine.inst.cfg │ │ ├── tronxy_0.4_PLA_low.inst.cfg │ │ ├── tronxy_0.4_PLA_normal.inst.cfg │ │ ├── tronxy_0.4_PLA_rough.inst.cfg │ │ ├── tronxy_0.4_TPU_extra.inst.cfg │ │ ├── tronxy_0.4_TPU_fine.inst.cfg │ │ ├── tronxy_0.4_TPU_normal.inst.cfg │ │ ├── tronxy_0.5_ABS_fine.inst.cfg │ │ ├── tronxy_0.5_ABS_low.inst.cfg │ │ ├── tronxy_0.5_ABS_normal.inst.cfg │ │ ├── tronxy_0.5_ABS_rapid.inst.cfg │ │ ├── tronxy_0.5_ABS_rough.inst.cfg │ │ ├── tronxy_0.5_PETG_fine.inst.cfg │ │ ├── tronxy_0.5_PETG_low.inst.cfg │ │ ├── tronxy_0.5_PETG_normal.inst.cfg │ │ ├── tronxy_0.5_PETG_rapid.inst.cfg │ │ ├── tronxy_0.5_PETG_rough.inst.cfg │ │ ├── tronxy_0.5_PLA_fine.inst.cfg │ │ ├── tronxy_0.5_PLA_low.inst.cfg │ │ ├── tronxy_0.5_PLA_normal.inst.cfg │ │ ├── tronxy_0.5_PLA_rapid.inst.cfg │ │ ├── tronxy_0.5_PLA_rough.inst.cfg │ │ ├── tronxy_0.5_TPU_fine.inst.cfg │ │ ├── tronxy_0.5_TPU_normal.inst.cfg │ │ ├── tronxy_0.5_TPU_rapid.inst.cfg │ │ ├── tronxy_0.6_ABS_normal.inst.cfg │ │ ├── tronxy_0.6_ABS_rapid.inst.cfg │ │ ├── tronxy_0.6_ABS_rough.inst.cfg │ │ ├── tronxy_0.6_PETG_normal.inst.cfg │ │ ├── tronxy_0.6_PETG_rapid.inst.cfg │ │ ├── tronxy_0.6_PETG_rough.inst.cfg │ │ ├── tronxy_0.6_PLA_low.inst.cfg │ │ ├── tronxy_0.6_PLA_normal.inst.cfg │ │ ├── tronxy_0.6_PLA_rapid.inst.cfg │ │ ├── tronxy_0.6_PLA_rough.inst.cfg │ │ ├── tronxy_0.6_TPU_normal.inst.cfg │ │ ├── tronxy_0.6_TPU_rapid.inst.cfg │ │ ├── tronxy_0.8_ABS_low.inst.cfg │ │ ├── tronxy_0.8_ABS_rapid.inst.cfg │ │ ├── tronxy_0.8_ABS_rough.inst.cfg │ │ ├── tronxy_0.8_PETG_low.inst.cfg │ │ ├── tronxy_0.8_PETG_rapid.inst.cfg │ │ ├── tronxy_0.8_PETG_rough.inst.cfg │ │ ├── tronxy_0.8_PLA_low.inst.cfg │ │ ├── tronxy_0.8_PLA_rapid.inst.cfg │ │ ├── tronxy_0.8_PLA_rough.inst.cfg │ │ ├── tronxy_0.8_TPU_low.inst.cfg │ │ ├── tronxy_0.8_TPU_rapid.inst.cfg │ │ ├── tronxy_0.8_TPU_rough.inst.cfg │ │ ├── tronxy_global_extra.inst.cfg │ │ ├── tronxy_global_fine.inst.cfg │ │ ├── tronxy_global_low.inst.cfg │ │ ├── tronxy_global_normal.inst.cfg │ │ ├── tronxy_global_rapid.inst.cfg │ │ ├── tronxy_global_rough.inst.cfg │ │ └── tronxy_global_super.inst.cfg │ ├── twotrees │ │ ├── abs │ │ │ ├── two_trees_0.2_ABS_super.inst.cfg │ │ │ ├── two_trees_0.2_ABS_ultra.inst.cfg │ │ │ ├── two_trees_0.3_ABS_adaptive.inst.cfg │ │ │ ├── two_trees_0.3_ABS_low.inst.cfg │ │ │ ├── two_trees_0.3_ABS_standard.inst.cfg │ │ │ ├── two_trees_0.3_ABS_super.inst.cfg │ │ │ ├── two_trees_0.4_ABS_adaptive.inst.cfg │ │ │ ├── two_trees_0.4_ABS_low.inst.cfg │ │ │ ├── two_trees_0.4_ABS_standard.inst.cfg │ │ │ ├── two_trees_0.4_ABS_super.inst.cfg │ │ │ ├── two_trees_0.5_ABS_adaptive.inst.cfg │ │ │ ├── two_trees_0.5_ABS_low.inst.cfg │ │ │ ├── two_trees_0.5_ABS_standard.inst.cfg │ │ │ ├── two_trees_0.5_ABS_super.inst.cfg │ │ │ ├── two_trees_0.6_ABS_standard.inst.cfg │ │ │ ├── two_trees_0.8_ABS_draft.inst.cfg │ │ │ └── two_trees_1.0_ABS_draft.inst.cfg │ │ ├── petg │ │ │ ├── two_trees_0.2_PETG_super.inst.cfg │ │ │ ├── two_trees_0.2_PETG_ultra.inst.cfg │ │ │ ├── two_trees_0.3_PETG_adaptive.inst.cfg │ │ │ ├── two_trees_0.3_PETG_low.inst.cfg │ │ │ ├── two_trees_0.3_PETG_standard.inst.cfg │ │ │ ├── two_trees_0.3_PETG_super.inst.cfg │ │ │ ├── two_trees_0.4_PETG_adaptive.inst.cfg │ │ │ ├── two_trees_0.4_PETG_low.inst.cfg │ │ │ ├── two_trees_0.4_PETG_standard.inst.cfg │ │ │ ├── two_trees_0.4_PETG_super.inst.cfg │ │ │ ├── two_trees_0.5_PETG_adaptive.inst.cfg │ │ │ ├── two_trees_0.5_PETG_low.inst.cfg │ │ │ ├── two_trees_0.5_PETG_standard.inst.cfg │ │ │ ├── two_trees_0.5_PETG_super.inst.cfg │ │ │ ├── two_trees_0.6_PETG_standard.inst.cfg │ │ │ ├── two_trees_0.8_PETG_draft.inst.cfg │ │ │ └── two_trees_1.0_PETG_draft.inst.cfg │ │ ├── pla │ │ │ ├── two_trees_0.2_PLA_super.inst.cfg │ │ │ ├── two_trees_0.2_PLA_ultra.inst.cfg │ │ │ ├── two_trees_0.3_PLA_adaptive.inst.cfg │ │ │ ├── two_trees_0.3_PLA_low.inst.cfg │ │ │ ├── two_trees_0.3_PLA_standard.inst.cfg │ │ │ ├── two_trees_0.3_PLA_super.inst.cfg │ │ │ ├── two_trees_0.4_PLA_adaptive.inst.cfg │ │ │ ├── two_trees_0.4_PLA_low.inst.cfg │ │ │ ├── two_trees_0.4_PLA_standard.inst.cfg │ │ │ ├── two_trees_0.4_PLA_super.inst.cfg │ │ │ ├── two_trees_0.5_PLA_adaptive.inst.cfg │ │ │ ├── two_trees_0.5_PLA_low.inst.cfg │ │ │ ├── two_trees_0.5_PLA_standard.inst.cfg │ │ │ ├── two_trees_0.5_PLA_super.inst.cfg │ │ │ ├── two_trees_0.6_PLA_draft.inst.cfg │ │ │ ├── two_trees_0.6_PLA_low.inst.cfg │ │ │ ├── two_trees_0.6_PLA_standard.inst.cfg │ │ │ ├── two_trees_0.8_PLA_draft.inst.cfg │ │ │ └── two_trees_1.0_PLA_draft.inst.cfg │ │ ├── tpu │ │ │ ├── two_trees_0.3_TPU_adaptive.inst.cfg │ │ │ ├── two_trees_0.3_TPU_standard.inst.cfg │ │ │ ├── two_trees_0.3_TPU_super.inst.cfg │ │ │ ├── two_trees_0.4_TPU_adaptive.inst.cfg │ │ │ ├── two_trees_0.4_TPU_standard.inst.cfg │ │ │ ├── two_trees_0.4_TPU_super.inst.cfg │ │ │ ├── two_trees_0.5_TPU_adaptive.inst.cfg │ │ │ ├── two_trees_0.5_TPU_standard.inst.cfg │ │ │ ├── two_trees_0.5_TPU_super.inst.cfg │ │ │ ├── two_trees_0.6_TPU_standard.inst.cfg │ │ │ ├── two_trees_0.8_TPU_draft.inst.cfg │ │ │ └── two_trees_1.0_TPU_draft.inst.cfg │ │ ├── two_trees_global_adaptive.inst.cfg │ │ ├── two_trees_global_draft.inst.cfg │ │ ├── two_trees_global_low.inst.cfg │ │ ├── two_trees_global_standard.inst.cfg │ │ ├── two_trees_global_super.inst.cfg │ │ └── two_trees_global_ultra.inst.cfg │ ├── ultimaker2 │ │ ├── um2_draft.inst.cfg │ │ ├── um2_fast.inst.cfg │ │ ├── um2_high.inst.cfg │ │ └── um2_normal.inst.cfg │ ├── ultimaker2_plus │ │ ├── pla_0.25_normal.inst.cfg │ │ ├── pla_0.4_fast.inst.cfg │ │ ├── pla_0.4_high.inst.cfg │ │ ├── pla_0.4_normal.inst.cfg │ │ ├── pla_0.6_normal.inst.cfg │ │ ├── pla_0.8_normal.inst.cfg │ │ ├── um2p_abs_0.25_normal.inst.cfg │ │ ├── um2p_abs_0.4_fast.inst.cfg │ │ ├── um2p_abs_0.4_high.inst.cfg │ │ ├── um2p_abs_0.4_normal.inst.cfg │ │ ├── um2p_abs_0.6_normal.inst.cfg │ │ ├── um2p_abs_0.8_normal.inst.cfg │ │ ├── um2p_cpe_0.25_normal.inst.cfg │ │ ├── um2p_cpe_0.4_fast.inst.cfg │ │ ├── um2p_cpe_0.4_high.inst.cfg │ │ ├── um2p_cpe_0.4_normal.inst.cfg │ │ ├── um2p_cpe_0.6_normal.inst.cfg │ │ ├── um2p_cpe_0.8_normal.inst.cfg │ │ ├── um2p_cpep_0.4_draft.inst.cfg │ │ ├── um2p_cpep_0.4_normal.inst.cfg │ │ ├── um2p_cpep_0.6_draft.inst.cfg │ │ ├── um2p_cpep_0.6_normal.inst.cfg │ │ ├── um2p_cpep_0.8_draft.inst.cfg │ │ ├── um2p_cpep_0.8_normal.inst.cfg │ │ ├── um2p_global_Coarse_Quality.inst.cfg │ │ ├── um2p_global_Draft_Quality.inst.cfg │ │ ├── um2p_global_Extra_Coarse_Quality.inst.cfg │ │ ├── um2p_global_Fast_Quality.inst.cfg │ │ ├── um2p_global_High_Quality.inst.cfg │ │ ├── um2p_global_Normal_Quality.inst.cfg │ │ ├── um2p_global_Slightly_Coarse_Quality.inst.cfg │ │ ├── um2p_nylon_0.25_high.inst.cfg │ │ ├── um2p_nylon_0.25_normal.inst.cfg │ │ ├── um2p_nylon_0.4_fast.inst.cfg │ │ ├── um2p_nylon_0.4_normal.inst.cfg │ │ ├── um2p_nylon_0.6_fast.inst.cfg │ │ ├── um2p_nylon_0.6_normal.inst.cfg │ │ ├── um2p_nylon_0.8_draft.inst.cfg │ │ ├── um2p_nylon_0.8_normal.inst.cfg │ │ ├── um2p_pc_0.25_high.inst.cfg │ │ ├── um2p_pc_0.25_normal.inst.cfg │ │ ├── um2p_pc_0.4_fast.inst.cfg │ │ ├── um2p_pc_0.4_normal.inst.cfg │ │ ├── um2p_pc_0.6_fast.inst.cfg │ │ ├── um2p_pc_0.6_normal.inst.cfg │ │ ├── um2p_pc_0.8_draft.inst.cfg │ │ ├── um2p_pc_0.8_normal.inst.cfg │ │ ├── um2p_pp_0.4_fast.inst.cfg │ │ ├── um2p_pp_0.4_normal.inst.cfg │ │ ├── um2p_pp_0.6_draft.inst.cfg │ │ ├── um2p_pp_0.6_fast.inst.cfg │ │ ├── um2p_pp_0.8_draft.inst.cfg │ │ ├── um2p_pp_0.8_verydraft.inst.cfg │ │ ├── um2p_tpu_0.25_high.inst.cfg │ │ ├── um2p_tpu_0.4_normal.inst.cfg │ │ └── um2p_tpu_0.6_fast.inst.cfg │ ├── ultimaker2_plus_connect │ │ ├── um2pc_abs_0.25_normal.inst.cfg │ │ ├── um2pc_abs_0.4_fast.inst.cfg │ │ ├── um2pc_abs_0.4_high.inst.cfg │ │ ├── um2pc_abs_0.4_normal.inst.cfg │ │ ├── um2pc_abs_0.6_normal.inst.cfg │ │ ├── um2pc_abs_0.8_normal.inst.cfg │ │ ├── um2pc_cpe_0.25_normal.inst.cfg │ │ ├── um2pc_cpe_0.4_fast.inst.cfg │ │ ├── um2pc_cpe_0.4_high.inst.cfg │ │ ├── um2pc_cpe_0.4_normal.inst.cfg │ │ ├── um2pc_cpe_0.6_normal.inst.cfg │ │ ├── um2pc_cpe_0.8_normal.inst.cfg │ │ ├── um2pc_cpep_0.4_draft.inst.cfg │ │ ├── um2pc_cpep_0.4_normal.inst.cfg │ │ ├── um2pc_cpep_0.6_draft.inst.cfg │ │ ├── um2pc_cpep_0.6_normal.inst.cfg │ │ ├── um2pc_cpep_0.8_draft.inst.cfg │ │ ├── um2pc_cpep_0.8_normal.inst.cfg │ │ ├── um2pc_global_Coarse_Quality.inst.cfg │ │ ├── um2pc_global_Draft_Quality.inst.cfg │ │ ├── um2pc_global_Extra_Coarse_Quality.inst.cfg │ │ ├── um2pc_global_Fast_Quality.inst.cfg │ │ ├── um2pc_global_High_Quality.inst.cfg │ │ ├── um2pc_global_Normal_Quality.inst.cfg │ │ ├── um2pc_global_Slightly_Coarse_Quality.inst.cfg │ │ ├── um2pc_nylon_0.25_high.inst.cfg │ │ ├── um2pc_nylon_0.25_normal.inst.cfg │ │ ├── um2pc_nylon_0.4_fast.inst.cfg │ │ ├── um2pc_nylon_0.4_normal.inst.cfg │ │ ├── um2pc_nylon_0.6_fast.inst.cfg │ │ ├── um2pc_nylon_0.6_normal.inst.cfg │ │ ├── um2pc_nylon_0.8_draft.inst.cfg │ │ ├── um2pc_nylon_0.8_normal.inst.cfg │ │ ├── um2pc_pc_0.25_high.inst.cfg │ │ ├── um2pc_pc_0.25_normal.inst.cfg │ │ ├── um2pc_pc_0.4_fast.inst.cfg │ │ ├── um2pc_pc_0.4_normal.inst.cfg │ │ ├── um2pc_pc_0.6_fast.inst.cfg │ │ ├── um2pc_pc_0.6_normal.inst.cfg │ │ ├── um2pc_pc_0.8_normal.inst.cfg │ │ ├── um2pc_petg_0.25_normal.inst.cfg │ │ ├── um2pc_petg_0.4_draft.inst.cfg │ │ ├── um2pc_petg_0.4_fast.inst.cfg │ │ ├── um2pc_petg_0.4_normal.inst.cfg │ │ ├── um2pc_petg_0.6_normal.inst.cfg │ │ ├── um2pc_petg_0.8_normal.inst.cfg │ │ ├── um2pc_pla_0.25_normal.inst.cfg │ │ ├── um2pc_pla_0.4_draft.inst.cfg │ │ ├── um2pc_pla_0.4_fast.inst.cfg │ │ ├── um2pc_pla_0.4_high.inst.cfg │ │ ├── um2pc_pla_0.4_normal.inst.cfg │ │ ├── um2pc_pla_0.6_normal.inst.cfg │ │ ├── um2pc_pla_0.8_normal.inst.cfg │ │ ├── um2pc_pp_0.4_fast.inst.cfg │ │ ├── um2pc_pp_0.4_normal.inst.cfg │ │ ├── um2pc_pp_0.6_draft.inst.cfg │ │ ├── um2pc_pp_0.6_fast.inst.cfg │ │ ├── um2pc_pp_0.8_draft.inst.cfg │ │ ├── um2pc_pp_0.8_verydraft.inst.cfg │ │ ├── um2pc_tpla_0.25_normal.inst.cfg │ │ ├── um2pc_tpla_0.4_draft.inst.cfg │ │ ├── um2pc_tpla_0.4_fast.inst.cfg │ │ ├── um2pc_tpla_0.4_normal.inst.cfg │ │ ├── um2pc_tpla_0.6_normal.inst.cfg │ │ ├── um2pc_tpla_0.8_normal.inst.cfg │ │ ├── um2pc_tpu_0.25_high.inst.cfg │ │ ├── um2pc_tpu_0.4_normal.inst.cfg │ │ └── um2pc_tpu_0.6_fast.inst.cfg │ ├── ultimaker3 │ │ ├── um3_aa0.25_ABS_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_CPE_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_Nylon_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_PC_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_PETG_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_PLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_PP_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_TPLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_ABS_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_ABS_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_ABS_High_Quality.inst.cfg │ │ ├── um3_aa0.4_ABS_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_BAM_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_BAM_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_BAM_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_CPEP_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_CPEP_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_CPEP_High_Quality.inst.cfg │ │ ├── um3_aa0.4_CPEP_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_CPE_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_CPE_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_CPE_High_Quality.inst.cfg │ │ ├── um3_aa0.4_CPE_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_Nylon_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_Nylon_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_Nylon_High_Quality.inst.cfg │ │ ├── um3_aa0.4_Nylon_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_PC_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_PC_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_PC_High_Quality.inst.cfg │ │ ├── um3_aa0.4_PC_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_PETG_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_PETG_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_PETG_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_PLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_PLA_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_PLA_High_Quality.inst.cfg │ │ ├── um3_aa0.4_PLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_PP_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_PP_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_PP_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_TPLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_TPLA_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_TPLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_TPU_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_TPU_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_TPU_Normal_Quality.inst.cfg │ │ ├── um3_aa0.8_ABS_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_ABS_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_ABS_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPEP_Fast_Print.inst.cfg │ │ ├── um3_aa0.8_CPEP_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPEP_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPE_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_CPE_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPE_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_Nylon_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_Nylon_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_Nylon_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_PC_Fast_Print.inst.cfg │ │ ├── um3_aa0.8_PC_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_PC_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_PETG_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_PETG_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_PETG_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_PLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_PLA_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_PLA_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_PP_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_PP_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_PP_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_TPLA_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPLA_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPU_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_TPU_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPU_Verydraft_Print.inst.cfg │ │ ├── um3_bb0.4_BAM_Draft_Print.inst.cfg │ │ ├── um3_bb0.4_BAM_Fast_Print.inst.cfg │ │ ├── um3_bb0.4_BAM_Normal_Quality.inst.cfg │ │ ├── um3_bb0.4_PVA_Draft_Print.inst.cfg │ │ ├── um3_bb0.4_PVA_Fast_Print.inst.cfg │ │ ├── um3_bb0.4_PVA_High_Quality.inst.cfg │ │ ├── um3_bb0.4_PVA_Normal_Quality.inst.cfg │ │ ├── um3_bb0.8_PVA_Draft_Print.inst.cfg │ │ ├── um3_bb0.8_PVA_Superdraft_Print.inst.cfg │ │ ├── um3_bb0.8_PVA_Verydraft_Print.inst.cfg │ │ ├── um3_global_Draft_Quality.inst.cfg │ │ ├── um3_global_Fast_Quality.inst.cfg │ │ ├── um3_global_High_Quality.inst.cfg │ │ ├── um3_global_Normal_Quality.inst.cfg │ │ ├── um3_global_Superdraft_Quality.inst.cfg │ │ └── um3_global_Verydraft_Quality.inst.cfg │ ├── ultimaker_factor4 │ │ ├── um_f4_aa0.25_petg_0.1mm.inst.cfg │ │ ├── um_f4_aa0.25_pla_0.1mm.inst.cfg │ │ ├── um_f4_aa0.25_tough-pla_0.1mm.inst.cfg │ │ ├── um_f4_aa0.4_abs_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_bam_0.15mm.inst.cfg │ │ ├── um_f4_aa0.4_bam_0.1mm.inst.cfg │ │ ├── um_f4_aa0.4_bam_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_bam_0.3mm.inst.cfg │ │ ├── um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_cpe_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_nylon_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_pc_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_petg_0.1mm.inst.cfg │ │ ├── um_f4_aa0.4_petg_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_petg_0.3mm.inst.cfg │ │ ├── um_f4_aa0.4_pla_0.1mm.inst.cfg │ │ ├── um_f4_aa0.4_pla_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_pla_0.3mm.inst.cfg │ │ ├── um_f4_aa0.4_pp_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_tough-pla_0.1mm.inst.cfg │ │ ├── um_f4_aa0.4_tough-pla_0.2mm.inst.cfg │ │ ├── um_f4_aa0.4_tough-pla_0.3mm.inst.cfg │ │ ├── um_f4_aa0.4_tpu_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_abs_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_cpe_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_nylon_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_petg_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_petg_0.4mm.inst.cfg │ │ ├── um_f4_aa0.8_pla_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_pla_0.4mm.inst.cfg │ │ ├── um_f4_aa0.8_tough-pla_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_tough-pla_0.4mm.inst.cfg │ │ ├── um_f4_aa0.8_tpu_0.2mm.inst.cfg │ │ ├── um_f4_aa0.8_tpu_0.3mm.inst.cfg │ │ ├── um_f4_aa0.8_tpu_0.4mm.inst.cfg │ │ ├── um_f4_bb0.4_bam_0.15mm.inst.cfg │ │ ├── um_f4_bb0.4_bam_0.1mm.inst.cfg │ │ ├── um_f4_bb0.4_bam_0.2mm.inst.cfg │ │ ├── um_f4_bb0.4_bam_0.3mm.inst.cfg │ │ ├── um_f4_bb0.4_bvoh_0.15mm.inst.cfg │ │ ├── um_f4_bb0.4_bvoh_0.1mm.inst.cfg │ │ ├── um_f4_bb0.4_bvoh_0.2mm.inst.cfg │ │ ├── um_f4_bb0.4_bvoh_0.3mm.inst.cfg │ │ ├── um_f4_bb0.4_pva_0.15mm.inst.cfg │ │ ├── um_f4_bb0.4_pva_0.1mm.inst.cfg │ │ ├── um_f4_bb0.4_pva_0.2mm.inst.cfg │ │ ├── um_f4_bb0.4_pva_0.3mm.inst.cfg │ │ ├── um_f4_bb0.8_bvoh_0.2mm.inst.cfg │ │ ├── um_f4_bb0.8_bvoh_0.3mm.inst.cfg │ │ ├── um_f4_bb0.8_bvoh_0.4mm.inst.cfg │ │ ├── um_f4_bb0.8_pva_0.2mm.inst.cfg │ │ ├── um_f4_bb0.8_pva_0.3mm.inst.cfg │ │ ├── um_f4_bb0.8_pva_0.4mm.inst.cfg │ │ ├── um_f4_cc0.4_cffcpe_0.2mm.inst.cfg │ │ ├── um_f4_cc0.4_cffpa_0.2mm.inst.cfg │ │ ├── um_f4_cc0.4_gffcpe_0.2mm.inst.cfg │ │ ├── um_f4_cc0.4_gffpa_0.2mm.inst.cfg │ │ ├── um_f4_cc0.4_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_f4_cc0.4_petcf_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_cffcpe_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_cffpa_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_gffcpe_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_gffpa_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_petcf_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_pla_0.2mm.inst.cfg │ │ ├── um_f4_cc0.6_pla_0.3mm.inst.cfg │ │ ├── um_f4_global_Draft_Quality.inst.cfg │ │ ├── um_f4_global_Fast_Quality.inst.cfg │ │ ├── um_f4_global_Normal_Quality.inst.cfg │ │ ├── um_f4_global_Superdraft_Quality.inst.cfg │ │ ├── um_f4_global_Verydraft_Quality.inst.cfg │ │ ├── um_f4_ht0.6_cffpps_0.2mm.inst.cfg │ │ ├── um_f4_ht0.6_nylon-cf-slide_0.2mm.inst.cfg │ │ └── um_f4_ht0.6_petcf_0.2mm.inst.cfg │ ├── ultimaker_method │ │ ├── um_method_1a_um-nylon-175_0.2mm.inst.cfg │ │ ├── um_method_1a_um-petg-175_0.2mm.inst.cfg │ │ ├── um_method_1a_um-pla-175_0.2mm.inst.cfg │ │ ├── um_method_1a_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_method_1c_um-nylon-175_0.2mm.inst.cfg │ │ ├── um_method_1c_um-nylon-cf-175_0.2mm.inst.cfg │ │ ├── um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg │ │ ├── um_method_1c_um-petg-175_0.2mm.inst.cfg │ │ ├── um_method_1c_um-pla-175_0.2mm.inst.cfg │ │ ├── um_method_1c_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_method_2a_um-pva-175_0.2mm.inst.cfg │ │ ├── um_method_global_Draft_Quality.inst.cfg │ │ ├── um_method_global_Fast_Quality.inst.cfg │ │ ├── um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg │ │ ├── um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg │ │ ├── um_method_labs_um-nylon-175_0.2mm.inst.cfg │ │ ├── um_method_labs_um-nylon-cf-175_0.2mm.inst.cfg │ │ ├── um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg │ │ ├── um_method_labs_um-petg-175_0.2mm.inst.cfg │ │ ├── um_method_labs_um-pla-175_0.2mm.inst.cfg │ │ └── um_method_labs_um-tough-pla-175_0.2mm.inst.cfg │ ├── ultimaker_methodx │ │ ├── um_methodx_1a_um-nylon-175_0.2mm.inst.cfg │ │ ├── um_methodx_1a_um-petg-175_0.2mm.inst.cfg │ │ ├── um_methodx_1a_um-pla-175_0.2mm.inst.cfg │ │ ├── um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-abs-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-abscf-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-absr-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-asa-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-nylon-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-nylon-cf-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-pc-abs-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-pc-abs-fr-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-petg-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-pla-175_0.2mm.inst.cfg │ │ ├── um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_methodx_1xa_um-abs-175_0.2mm.inst.cfg │ │ ├── um_methodx_1xa_um-absr-175_0.2mm.inst.cfg │ │ ├── um_methodx_1xa_um-asa-175_0.2mm.inst.cfg │ │ ├── um_methodx_1xa_um-pc-abs-175_0.2mm.inst.cfg │ │ ├── um_methodx_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg │ │ ├── um_methodx_2a_um-pva-175_0.2mm.inst.cfg │ │ ├── um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg │ │ ├── um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg │ │ ├── um_methodx_global_Draft_Quality.inst.cfg │ │ ├── um_methodx_global_Fast_Quality.inst.cfg │ │ ├── um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg │ │ ├── um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-abs-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-abscf-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-absr-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-asa-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-nylon-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-nylon-cf-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-pc-abs-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-pc-abs-fr-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-petg-175_0.2mm.inst.cfg │ │ ├── um_methodx_labs_um-pla-175_0.2mm.inst.cfg │ │ └── um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg │ ├── ultimaker_methodxl │ │ ├── um_methodxl_1a_um-petg-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1a_um-pla-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-abs-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-absr-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-asa-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-nylon-cf-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-pc-abs-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-pc-abs-fr-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-petg-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-pla-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1xa_um-abs-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1xa_um-pc-abs-175_0.2mm.inst.cfg │ │ ├── um_methodxl_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg │ │ ├── um_methodxl_2a_um-pva-175_0.2mm.inst.cfg │ │ ├── um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg │ │ ├── um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg │ │ ├── um_methodxl_global_Draft_Quality.inst.cfg │ │ ├── um_methodxl_global_Fast_Quality.inst.cfg │ │ ├── um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-abs-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-absr-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-asa-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-nylon-cf-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-pc-abs-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-pc-abs-fr-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-petg-175_0.2mm.inst.cfg │ │ ├── um_methodxl_labs_um-pla-175_0.2mm.inst.cfg │ │ └── um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg │ ├── ultimaker_original │ │ ├── umo_global_Coarse_Quality.inst.cfg │ │ ├── umo_global_Draft_Quality.inst.cfg │ │ ├── umo_global_Extra_Coarse_Quality.inst.cfg │ │ ├── umo_global_Fast_Quality.inst.cfg │ │ ├── umo_global_High_Quality.inst.cfg │ │ └── umo_global_Normal_Quality.inst.cfg │ ├── ultimaker_replicator_plus │ │ ├── um_replicator_b_smartextruder_plus_experimental_um-pla-175_0.2mm.inst.cfg │ │ ├── um_replicator_b_smartextruder_plus_experimental_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_replicator_b_smartextruder_plus_tough_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_replicator_b_smartextruder_plus_um-pla-175_0.2mm.inst.cfg │ │ └── um_replicator_plus_global_Draft_Quality.inst.cfg │ ├── ultimaker_s3 │ │ ├── um_s3_aa0.25_abs_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_cpe_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_nylon_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_pc_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_petg_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_pp_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_tough-pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_um-abs_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_um-petg_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_um-pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_abs_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_bam_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_bam_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_bam_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_bam_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_cpe_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_nylon_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_nylon_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_nylon_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_nylon_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_pc_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_pc_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_pc_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_pc_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_petg_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_petg_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_petg_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_petg_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_petg_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_pp_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_pp_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_pp_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_tough-pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_tpu_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_tpu_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_tpu_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_um-abs_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_um-petg_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_um-pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_abs_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_abs_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_abs_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_cpe_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_cpe_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_cpe_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_nylon_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_nylon_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_nylon_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_pc_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_pc_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_pc_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_petg_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_petg_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_petg_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_pla_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_pp_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_pp_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_pp_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_tough-pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_tough-pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_tough-pla_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_tpu_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_tpu_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_tpu_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_um-abs_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_um-petg_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_um-pla_0.4mm.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg │ │ ├── um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg │ │ ├── um_s3_bb0.4_bam_0.15mm.inst.cfg │ │ ├── um_s3_bb0.4_bam_0.1mm.inst.cfg │ │ ├── um_s3_bb0.4_bam_0.2mm.inst.cfg │ │ ├── um_s3_bb0.4_bam_0.3mm.inst.cfg │ │ ├── um_s3_bb0.4_bvoh_0.15mm.inst.cfg │ │ ├── um_s3_bb0.4_bvoh_0.1mm.inst.cfg │ │ ├── um_s3_bb0.4_bvoh_0.2mm.inst.cfg │ │ ├── um_s3_bb0.4_bvoh_0.3mm.inst.cfg │ │ ├── um_s3_bb0.4_pva_0.06mm.inst.cfg │ │ ├── um_s3_bb0.4_pva_0.15mm.inst.cfg │ │ ├── um_s3_bb0.4_pva_0.1mm.inst.cfg │ │ ├── um_s3_bb0.4_pva_0.2mm.inst.cfg │ │ ├── um_s3_bb0.4_pva_0.3mm.inst.cfg │ │ ├── um_s3_bb0.8_bvoh_0.2mm.inst.cfg │ │ ├── um_s3_bb0.8_bvoh_0.3mm.inst.cfg │ │ ├── um_s3_bb0.8_bvoh_0.4mm.inst.cfg │ │ ├── um_s3_bb0.8_pva_0.2mm.inst.cfg │ │ ├── um_s3_bb0.8_pva_0.3mm.inst.cfg │ │ ├── um_s3_bb0.8_pva_0.4mm.inst.cfg │ │ ├── um_s3_cc0.4_cffcpe_0.15mm.inst.cfg │ │ ├── um_s3_cc0.4_cffcpe_0.2mm.inst.cfg │ │ ├── um_s3_cc0.4_cffpa_0.15mm.inst.cfg │ │ ├── um_s3_cc0.4_cffpa_0.2mm.inst.cfg │ │ ├── um_s3_cc0.4_gffcpe_0.15mm.inst.cfg │ │ ├── um_s3_cc0.4_gffcpe_0.2mm.inst.cfg │ │ ├── um_s3_cc0.4_gffpa_0.15mm.inst.cfg │ │ ├── um_s3_cc0.4_gffpa_0.2mm.inst.cfg │ │ ├── um_s3_cc0.4_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s3_cc0.4_petcf_0.15mm.inst.cfg │ │ ├── um_s3_cc0.4_petcf_0.2mm.inst.cfg │ │ ├── um_s3_cc0.4_pla_0.15mm.inst.cfg │ │ ├── um_s3_cc0.4_pla_0.2mm.inst.cfg │ │ ├── um_s3_cc0.4_um-pla_0.15mm.inst.cfg │ │ ├── um_s3_cc0.4_um-pla_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_cffcpe_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_cffpa_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_gffcpe_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_gffpa_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_petcf_0.15mm.inst.cfg │ │ ├── um_s3_cc0.6_petcf_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_petcf_0.3mm.inst.cfg │ │ ├── um_s3_cc0.6_pla_0.15mm.inst.cfg │ │ ├── um_s3_cc0.6_pla_0.2mm.inst.cfg │ │ ├── um_s3_cc0.6_um-pla_0.15mm.inst.cfg │ │ ├── um_s3_cc0.6_um-pla_0.2mm.inst.cfg │ │ ├── um_s3_global_Draft_Quality.inst.cfg │ │ ├── um_s3_global_Fast_Quality.inst.cfg │ │ ├── um_s3_global_High_Quality.inst.cfg │ │ ├── um_s3_global_Normal_Quality.inst.cfg │ │ ├── um_s3_global_Superdraft_Quality.inst.cfg │ │ └── um_s3_global_Verydraft_Quality.inst.cfg │ ├── ultimaker_s5 │ │ ├── um_s5_aa0.25_abs_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_cpe_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_nylon_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_pc_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_petg_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_pp_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_tough-pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_um-abs_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_um-petg_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_um-pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_abs_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_bam_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_bam_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_bam_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_bam_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_cpe_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_nylon_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_nylon_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_nylon_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_nylon_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_pc_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_pc_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_pc_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_pc_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_petg_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_petg_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_petg_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_petg_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_petg_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_pp_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_pp_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_pp_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_tough-pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_tpu_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_tpu_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_tpu_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_um-abs_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_um-petg_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_um-pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_abs_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_abs_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_abs_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_cpe_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_cpe_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_cpe_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_nylon_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_nylon_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_nylon_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_pc_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_pc_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_pc_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_petg_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_petg_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_petg_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_pla_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_pp_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_pp_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_pp_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_tough-pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_tough-pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_tough-pla_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_tpu_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_tpu_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_tpu_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_um-abs_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_um-petg_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_um-pla_0.4mm.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg │ │ ├── um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg │ │ ├── um_s5_bb0.4_bam_0.15mm.inst.cfg │ │ ├── um_s5_bb0.4_bam_0.1mm.inst.cfg │ │ ├── um_s5_bb0.4_bam_0.2mm.inst.cfg │ │ ├── um_s5_bb0.4_bam_0.3mm.inst.cfg │ │ ├── um_s5_bb0.4_bvoh_0.15mm.inst.cfg │ │ ├── um_s5_bb0.4_bvoh_0.1mm.inst.cfg │ │ ├── um_s5_bb0.4_bvoh_0.2mm.inst.cfg │ │ ├── um_s5_bb0.4_bvoh_0.3mm.inst.cfg │ │ ├── um_s5_bb0.4_pva_0.06mm.inst.cfg │ │ ├── um_s5_bb0.4_pva_0.15mm.inst.cfg │ │ ├── um_s5_bb0.4_pva_0.1mm.inst.cfg │ │ ├── um_s5_bb0.4_pva_0.2mm.inst.cfg │ │ ├── um_s5_bb0.4_pva_0.3mm.inst.cfg │ │ ├── um_s5_bb0.8_bvoh_0.2mm.inst.cfg │ │ ├── um_s5_bb0.8_bvoh_0.3mm.inst.cfg │ │ ├── um_s5_bb0.8_bvoh_0.4mm.inst.cfg │ │ ├── um_s5_bb0.8_pva_0.2mm.inst.cfg │ │ ├── um_s5_bb0.8_pva_0.3mm.inst.cfg │ │ ├── um_s5_bb0.8_pva_0.4mm.inst.cfg │ │ ├── um_s5_cc0.4_cffcpe_0.15mm.inst.cfg │ │ ├── um_s5_cc0.4_cffcpe_0.2mm.inst.cfg │ │ ├── um_s5_cc0.4_cffpa_0.15mm.inst.cfg │ │ ├── um_s5_cc0.4_cffpa_0.2mm.inst.cfg │ │ ├── um_s5_cc0.4_gffcpe_0.15mm.inst.cfg │ │ ├── um_s5_cc0.4_gffcpe_0.2mm.inst.cfg │ │ ├── um_s5_cc0.4_gffpa_0.15mm.inst.cfg │ │ ├── um_s5_cc0.4_gffpa_0.2mm.inst.cfg │ │ ├── um_s5_cc0.4_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s5_cc0.4_petcf_0.15mm.inst.cfg │ │ ├── um_s5_cc0.4_petcf_0.2mm.inst.cfg │ │ ├── um_s5_cc0.4_pla_0.15mm.inst.cfg │ │ ├── um_s5_cc0.4_pla_0.2mm.inst.cfg │ │ ├── um_s5_cc0.4_um-pla_0.15mm.inst.cfg │ │ ├── um_s5_cc0.4_um-pla_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_cffcpe_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_cffpa_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_gffcpe_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_gffpa_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_petcf_0.15mm.inst.cfg │ │ ├── um_s5_cc0.6_petcf_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_petcf_0.3mm.inst.cfg │ │ ├── um_s5_cc0.6_pla_0.15mm.inst.cfg │ │ ├── um_s5_cc0.6_pla_0.2mm.inst.cfg │ │ ├── um_s5_cc0.6_um-pla_0.15mm.inst.cfg │ │ ├── um_s5_cc0.6_um-pla_0.2mm.inst.cfg │ │ ├── um_s5_global_Draft_Quality.inst.cfg │ │ ├── um_s5_global_Fast_Quality.inst.cfg │ │ ├── um_s5_global_High_Quality.inst.cfg │ │ ├── um_s5_global_Normal_Quality.inst.cfg │ │ ├── um_s5_global_Superdraft_Quality.inst.cfg │ │ └── um_s5_global_Verydraft_Quality.inst.cfg │ ├── ultimaker_s8 │ │ ├── um_s8_aa0.25_abs_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_cpe_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_nylon_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_pc_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_petg_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_pp_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_tough-pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_um-abs_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_um-petg_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_um-pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.25_um-tough-pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_abs_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_bam_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_bam_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_bam_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_bam_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe-plus_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe-plus_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe-plus_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_cpe_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_nylon_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_nylon_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_nylon_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_nylon_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_pc_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_pc_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_pc_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_pc_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_petg_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_petg_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_petg_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_petg_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_petg_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_pp_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_pp_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_pp_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_tough-pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_tpu_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_tpu_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_tpu_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_um-abs_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_um-petg_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_um-pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.06mm.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.15mm.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.1mm.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.4_um-tough-pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_abs_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_abs_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_abs_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_cpe-plus_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_cpe-plus_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_cpe_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_cpe_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_cpe_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_nylon_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_nylon_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_nylon_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_pc_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_pc_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_pc_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_petg_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_petg_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_petg_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_pla_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_pp_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_pp_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_pp_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_tough-pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_tough-pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_tough-pla_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_tpu_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_tpu_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_tpu_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_um-abs_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_um-petg_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_um-pla_0.4mm.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.2mm.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.3mm.inst.cfg │ │ ├── um_s8_aa0.8_um-tough-pla_0.4mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_abs_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_cpe_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_nylon_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pc_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_petg_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pla_0.15mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pla_0.1mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pla_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_pp_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_tough-pla_0.15mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_tough-pla_0.1mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_tough-pla_0.2mm.inst.cfg │ │ ├── um_s8_aa_plus_0.4_tpu_0.2mm.inst.cfg │ │ ├── um_s8_bb0.4_bam_0.15mm.inst.cfg │ │ ├── um_s8_bb0.4_bam_0.1mm.inst.cfg │ │ ├── um_s8_bb0.4_bam_0.2mm.inst.cfg │ │ ├── um_s8_bb0.4_bam_0.3mm.inst.cfg │ │ ├── um_s8_bb0.4_bvoh_0.15mm.inst.cfg │ │ ├── um_s8_bb0.4_bvoh_0.1mm.inst.cfg │ │ ├── um_s8_bb0.4_bvoh_0.2mm.inst.cfg │ │ ├── um_s8_bb0.4_bvoh_0.3mm.inst.cfg │ │ ├── um_s8_bb0.4_pva_0.06mm.inst.cfg │ │ ├── um_s8_bb0.4_pva_0.15mm.inst.cfg │ │ ├── um_s8_bb0.4_pva_0.1mm.inst.cfg │ │ ├── um_s8_bb0.4_pva_0.2mm.inst.cfg │ │ ├── um_s8_bb0.4_pva_0.3mm.inst.cfg │ │ ├── um_s8_bb0.8_bvoh_0.2mm.inst.cfg │ │ ├── um_s8_bb0.8_bvoh_0.3mm.inst.cfg │ │ ├── um_s8_bb0.8_bvoh_0.4mm.inst.cfg │ │ ├── um_s8_bb0.8_pva_0.2mm.inst.cfg │ │ ├── um_s8_bb0.8_pva_0.3mm.inst.cfg │ │ ├── um_s8_bb0.8_pva_0.4mm.inst.cfg │ │ ├── um_s8_cc0.4_cffcpe_0.15mm.inst.cfg │ │ ├── um_s8_cc0.4_cffcpe_0.2mm.inst.cfg │ │ ├── um_s8_cc0.4_cffpa_0.15mm.inst.cfg │ │ ├── um_s8_cc0.4_cffpa_0.2mm.inst.cfg │ │ ├── um_s8_cc0.4_gffcpe_0.15mm.inst.cfg │ │ ├── um_s8_cc0.4_gffcpe_0.2mm.inst.cfg │ │ ├── um_s8_cc0.4_gffpa_0.15mm.inst.cfg │ │ ├── um_s8_cc0.4_gffpa_0.2mm.inst.cfg │ │ ├── um_s8_cc0.4_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s8_cc0.4_petcf_0.15mm.inst.cfg │ │ ├── um_s8_cc0.4_petcf_0.2mm.inst.cfg │ │ ├── um_s8_cc0.4_pla_0.15mm.inst.cfg │ │ ├── um_s8_cc0.4_pla_0.2mm.inst.cfg │ │ ├── um_s8_cc0.4_um-pla_0.15mm.inst.cfg │ │ ├── um_s8_cc0.4_um-pla_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_cffcpe_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_cffpa_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_gffcpe_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_gffpa_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_petcf_0.15mm.inst.cfg │ │ ├── um_s8_cc0.6_petcf_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_petcf_0.3mm.inst.cfg │ │ ├── um_s8_cc0.6_pla_0.15mm.inst.cfg │ │ ├── um_s8_cc0.6_pla_0.2mm.inst.cfg │ │ ├── um_s8_cc0.6_um-pla_0.15mm.inst.cfg │ │ ├── um_s8_cc0.6_um-pla_0.2mm.inst.cfg │ │ ├── um_s8_cc_plus_0.4_cpe-plus_0.2mm.inst.cfg │ │ ├── um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s8_cc_plus_0.4_pc_0.2mm.inst.cfg │ │ ├── um_s8_cc_plus_0.4_petcf_0.2mm.inst.cfg │ │ ├── um_s8_cc_plus_0.6_nylon-cf-slide_0.2mm.inst.cfg │ │ ├── um_s8_cc_plus_0.6_petcf_0.2mm.inst.cfg │ │ ├── um_s8_global_Draft_Quality.inst.cfg │ │ ├── um_s8_global_Fast_Quality.inst.cfg │ │ ├── um_s8_global_High_Quality.inst.cfg │ │ ├── um_s8_global_Normal_Quality.inst.cfg │ │ ├── um_s8_global_Superdraft_Quality.inst.cfg │ │ └── um_s8_global_Verydraft_Quality.inst.cfg │ ├── ultimaker_sketch │ │ ├── um_sketch_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg │ │ ├── um_sketch_0.4mm_um-pla-175_0.2mm.inst.cfg │ │ ├── um_sketch_0.4mm_um-tough-pla-175_0.2mm.inst.cfg │ │ └── um_sketch_global_Draft_Quality.inst.cfg │ ├── ultimaker_sketch_large │ │ ├── um_sketch_large_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg │ │ ├── um_sketch_large_0.4mm_um-pla-175_0.2mm.inst.cfg │ │ ├── um_sketch_large_0.4mm_um-tough-pla-175_0.2mm.inst.cfg │ │ └── um_sketch_large_global_Draft_Quality.inst.cfg │ ├── ultimaker_sketch_sprint │ │ ├── um_sketch_sprint_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg │ │ ├── um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg │ │ ├── um_sketch_sprint_0.4mm_um-pla-175_0.2mm.inst.cfg │ │ ├── um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg │ │ ├── um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm.inst.cfg │ │ ├── um_sketch_sprint_global_Draft_Quality.inst.cfg │ │ └── um_sketch_sprint_global_Imperial_Quality.inst.cfg │ ├── uni_base │ │ ├── abs │ │ │ ├── nozzle_0_30 │ │ │ │ ├── abs_nozzle_0.30_layer_0.10.inst.cfg │ │ │ │ ├── abs_nozzle_0.30_layer_0.15.inst.cfg │ │ │ │ ├── abs_nozzle_0.30_layer_0.20.inst.cfg │ │ │ │ └── abs_nozzle_0.30_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_40 │ │ │ │ ├── abs_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── abs_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── abs_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ ├── abs_nozzle_0.40_layer_0.25.inst.cfg │ │ │ │ └── abs_nozzle_0.40_layer_0.30.inst.cfg │ │ │ └── nozzle_0_50 │ │ │ │ ├── abs_nozzle_0.50_layer_0.15.inst.cfg │ │ │ │ ├── abs_nozzle_0.50_layer_0.20.inst.cfg │ │ │ │ ├── abs_nozzle_0.50_layer_0.25.inst.cfg │ │ │ │ ├── abs_nozzle_0.50_layer_0.30.inst.cfg │ │ │ │ └── abs_nozzle_0.50_layer_0.35.inst.cfg │ │ ├── hips │ │ │ ├── nozzle_0_30 │ │ │ │ ├── hips_nozzle_0.30_layer_0.10.inst.cfg │ │ │ │ ├── hips_nozzle_0.30_layer_0.15.inst.cfg │ │ │ │ ├── hips_nozzle_0.30_layer_0.20.inst.cfg │ │ │ │ └── hips_nozzle_0.30_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_40 │ │ │ │ ├── hips_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── hips_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── hips_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ ├── hips_nozzle_0.40_layer_0.25.inst.cfg │ │ │ │ └── hips_nozzle_0.40_layer_0.30.inst.cfg │ │ │ └── nozzle_0_50 │ │ │ │ ├── hips_nozzle_0.50_layer_0.15.inst.cfg │ │ │ │ ├── hips_nozzle_0.50_layer_0.20.inst.cfg │ │ │ │ ├── hips_nozzle_0.50_layer_0.25.inst.cfg │ │ │ │ ├── hips_nozzle_0.50_layer_0.30.inst.cfg │ │ │ │ └── hips_nozzle_0.50_layer_0.35.inst.cfg │ │ ├── layer_0.05.inst.cfg │ │ ├── layer_0.10.inst.cfg │ │ ├── layer_0.15.inst.cfg │ │ ├── layer_0.20.inst.cfg │ │ ├── layer_0.25.inst.cfg │ │ ├── layer_0.30.inst.cfg │ │ ├── layer_0.35.inst.cfg │ │ ├── layer_0.40.inst.cfg │ │ ├── petg │ │ │ ├── nozzle_0_30 │ │ │ │ ├── petg_nozzle_0.30_layer_0.10.inst.cfg │ │ │ │ ├── petg_nozzle_0.30_layer_0.15.inst.cfg │ │ │ │ ├── petg_nozzle_0.30_layer_0.20.inst.cfg │ │ │ │ └── petg_nozzle_0.30_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_40 │ │ │ │ ├── petg_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── petg_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── petg_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ ├── petg_nozzle_0.40_layer_0.25.inst.cfg │ │ │ │ └── petg_nozzle_0.40_layer_0.30.inst.cfg │ │ │ └── nozzle_0_50 │ │ │ │ ├── petg_nozzle_0.50_layer_0.15.inst.cfg │ │ │ │ ├── petg_nozzle_0.50_layer_0.20.inst.cfg │ │ │ │ ├── petg_nozzle_0.50_layer_0.25.inst.cfg │ │ │ │ ├── petg_nozzle_0.50_layer_0.30.inst.cfg │ │ │ │ └── petg_nozzle_0.50_layer_0.35.inst.cfg │ │ └── pla │ │ │ ├── nozzle_0_30 │ │ │ ├── pla_nozzle_0.30_layer_0.10.inst.cfg │ │ │ ├── pla_nozzle_0.30_layer_0.15.inst.cfg │ │ │ ├── pla_nozzle_0.30_layer_0.20.inst.cfg │ │ │ └── pla_nozzle_0.30_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_40 │ │ │ ├── pla_nozzle_0.40_layer_0.10.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.15.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.20.inst.cfg │ │ │ ├── pla_nozzle_0.40_layer_0.25.inst.cfg │ │ │ └── pla_nozzle_0.40_layer_0.30.inst.cfg │ │ │ └── nozzle_0_50 │ │ │ ├── pla_nozzle_0.50_layer_0.15.inst.cfg │ │ │ ├── pla_nozzle_0.50_layer_0.20.inst.cfg │ │ │ ├── pla_nozzle_0.50_layer_0.25.inst.cfg │ │ │ ├── pla_nozzle_0.50_layer_0.30.inst.cfg │ │ │ └── pla_nozzle_0.50_layer_0.35.inst.cfg │ ├── vertex_delta_k8800 │ │ ├── k8800_ABS_Extreme_Quality.inst.cfg │ │ ├── k8800_ABS_High_Quality.inst.cfg │ │ ├── k8800_ABS_Normal_Quality.inst.cfg │ │ ├── k8800_Global_Extreme_Quality.inst.cfg │ │ ├── k8800_Global_High_Quality.inst.cfg │ │ ├── k8800_Global_Normal_Quality.inst.cfg │ │ ├── k8800_PET_Extreme_Quality.inst.cfg │ │ ├── k8800_PET_High_Quality.inst.cfg │ │ ├── k8800_PET_Normal_Quality.inst.cfg │ │ ├── k8800_PLA_Extreme_Quality.inst.cfg │ │ ├── k8800_PLA_High_Quality.inst.cfg │ │ ├── k8800_PLA_Normal_Quality.inst.cfg │ │ ├── k8800_TPU_Extreme_Quality.inst.cfg │ │ ├── k8800_TPU_High_Quality.inst.cfg │ │ └── k8800_TPU_Normal_Quality.inst.cfg │ ├── vivedino │ │ ├── trex2plus │ │ │ ├── trex2plus_0.2_ABS_super.inst.cfg │ │ │ ├── trex2plus_0.2_ABS_ultra.inst.cfg │ │ │ ├── trex2plus_0.2_PETG_super.inst.cfg │ │ │ ├── trex2plus_0.2_PETG_ultra.inst.cfg │ │ │ ├── trex2plus_0.2_PLA_super.inst.cfg │ │ │ ├── trex2plus_0.2_PLA_ultra.inst.cfg │ │ │ ├── trex2plus_0.4_ABS_adaptive.inst.cfg │ │ │ ├── trex2plus_0.4_ABS_low.inst.cfg │ │ │ ├── trex2plus_0.4_ABS_standard.inst.cfg │ │ │ ├── trex2plus_0.4_ABS_super.inst.cfg │ │ │ ├── trex2plus_0.4_PETG_adaptive.inst.cfg │ │ │ ├── trex2plus_0.4_PETG_low.inst.cfg │ │ │ ├── trex2plus_0.4_PETG_standard.inst.cfg │ │ │ ├── trex2plus_0.4_PETG_super.inst.cfg │ │ │ ├── trex2plus_0.4_PLA_adaptive.inst.cfg │ │ │ ├── trex2plus_0.4_PLA_low.inst.cfg │ │ │ ├── trex2plus_0.4_PLA_standard.inst.cfg │ │ │ ├── trex2plus_0.4_PLA_super.inst.cfg │ │ │ ├── trex2plus_0.4_TPU_adaptive.inst.cfg │ │ │ ├── trex2plus_0.4_TPU_standard.inst.cfg │ │ │ ├── trex2plus_0.4_TPU_super.inst.cfg │ │ │ ├── trex2plus_0.6_ABS_standard.inst.cfg │ │ │ ├── trex2plus_0.6_PETG_standard.inst.cfg │ │ │ ├── trex2plus_0.6_PLA_draft.inst.cfg │ │ │ ├── trex2plus_0.6_PLA_low.inst.cfg │ │ │ ├── trex2plus_0.6_PLA_standard.inst.cfg │ │ │ ├── trex2plus_0.6_TPU_standard.inst.cfg │ │ │ ├── trex2plus_0.8_ABS_draft.inst.cfg │ │ │ ├── trex2plus_0.8_PETG_draft.inst.cfg │ │ │ ├── trex2plus_0.8_PLA_draft.inst.cfg │ │ │ ├── trex2plus_0.8_TPU_draft.inst.cfg │ │ │ ├── trex2plus_global_adaptive.inst.cfg │ │ │ ├── trex2plus_global_draft.inst.cfg │ │ │ ├── trex2plus_global_low.inst.cfg │ │ │ ├── trex2plus_global_standard.inst.cfg │ │ │ ├── trex2plus_global_super.inst.cfg │ │ │ └── trex2plus_global_ultra.inst.cfg │ │ └── trex3 │ │ │ ├── trex3_0.2_ABS_super.inst.cfg │ │ │ ├── trex3_0.2_ABS_ultra.inst.cfg │ │ │ ├── trex3_0.2_PETG_super.inst.cfg │ │ │ ├── trex3_0.2_PETG_ultra.inst.cfg │ │ │ ├── trex3_0.2_PLA_super.inst.cfg │ │ │ ├── trex3_0.2_PLA_ultra.inst.cfg │ │ │ ├── trex3_0.4_ABS_adaptive.inst.cfg │ │ │ ├── trex3_0.4_ABS_low.inst.cfg │ │ │ ├── trex3_0.4_ABS_standard.inst.cfg │ │ │ ├── trex3_0.4_ABS_super.inst.cfg │ │ │ ├── trex3_0.4_PETG_adaptive.inst.cfg │ │ │ ├── trex3_0.4_PETG_low.inst.cfg │ │ │ ├── trex3_0.4_PETG_standard.inst.cfg │ │ │ ├── trex3_0.4_PETG_super.inst.cfg │ │ │ ├── trex3_0.4_PLA_adaptive.inst.cfg │ │ │ ├── trex3_0.4_PLA_low.inst.cfg │ │ │ ├── trex3_0.4_PLA_standard.inst.cfg │ │ │ ├── trex3_0.4_PLA_super.inst.cfg │ │ │ ├── trex3_0.4_TPU_adaptive.inst.cfg │ │ │ ├── trex3_0.4_TPU_standard.inst.cfg │ │ │ ├── trex3_0.4_TPU_super.inst.cfg │ │ │ ├── trex3_0.6_ABS_standard.inst.cfg │ │ │ ├── trex3_0.6_PETG_standard.inst.cfg │ │ │ ├── trex3_0.6_PLA_draft.inst.cfg │ │ │ ├── trex3_0.6_PLA_low.inst.cfg │ │ │ ├── trex3_0.6_PLA_standard.inst.cfg │ │ │ ├── trex3_0.6_TPU_standard.inst.cfg │ │ │ ├── trex3_0.8_ABS_draft.inst.cfg │ │ │ ├── trex3_0.8_PETG_draft.inst.cfg │ │ │ ├── trex3_0.8_PLA_draft.inst.cfg │ │ │ ├── trex3_0.8_TPU_draft.inst.cfg │ │ │ ├── trex3_global_adaptive.inst.cfg │ │ │ ├── trex3_global_draft.inst.cfg │ │ │ ├── trex3_global_low.inst.cfg │ │ │ ├── trex3_global_standard.inst.cfg │ │ │ ├── trex3_global_super.inst.cfg │ │ │ └── trex3_global_ultra.inst.cfg │ ├── volumic │ │ ├── sh65_coarse.inst.cfg │ │ ├── sh65_draft.inst.cfg │ │ ├── sh65_extra_coarse.inst.cfg │ │ ├── sh65_fast.inst.cfg │ │ ├── sh65_high.inst.cfg │ │ ├── sh65_normal.inst.cfg │ │ ├── stream20dual_mk2_coarse.inst.cfg │ │ ├── stream20dual_mk2_draft.inst.cfg │ │ ├── stream20dual_mk2_extra_coarse.inst.cfg │ │ ├── stream20dual_mk2_fast.inst.cfg │ │ ├── stream20dual_mk2_high.inst.cfg │ │ ├── stream20dual_mk2_normal.inst.cfg │ │ ├── stream20pro_mk2_coarse.inst.cfg │ │ ├── stream20pro_mk2_draft.inst.cfg │ │ ├── stream20pro_mk2_extra_coarse.inst.cfg │ │ ├── stream20pro_mk2_fast.inst.cfg │ │ ├── stream20pro_mk2_high.inst.cfg │ │ ├── stream20pro_mk2_normal.inst.cfg │ │ ├── stream30dual_mk2_coarse.inst.cfg │ │ ├── stream30dual_mk2_draft.inst.cfg │ │ ├── stream30dual_mk2_extra_coarse.inst.cfg │ │ ├── stream30dual_mk2_fast.inst.cfg │ │ ├── stream30dual_mk2_high.inst.cfg │ │ ├── stream30dual_mk2_normal.inst.cfg │ │ ├── stream30mk3_coarse.inst.cfg │ │ ├── stream30mk3_draft.inst.cfg │ │ ├── stream30mk3_extra_coarse.inst.cfg │ │ ├── stream30mk3_fast.inst.cfg │ │ ├── stream30mk3_high.inst.cfg │ │ ├── stream30mk3_normal.inst.cfg │ │ ├── stream30pro_mk2_coarse.inst.cfg │ │ ├── stream30pro_mk2_draft.inst.cfg │ │ ├── stream30pro_mk2_extra_coarse.inst.cfg │ │ ├── stream30pro_mk2_fast.inst.cfg │ │ ├── stream30pro_mk2_high.inst.cfg │ │ ├── stream30pro_mk2_normal.inst.cfg │ │ ├── stream30ultra_coarse.inst.cfg │ │ ├── stream30ultra_draft.inst.cfg │ │ ├── stream30ultra_extra_coarse.inst.cfg │ │ ├── stream30ultra_fast.inst.cfg │ │ ├── stream30ultra_high.inst.cfg │ │ ├── stream30ultra_normal.inst.cfg │ │ ├── stream30ultrasc2_coarse.inst.cfg │ │ ├── stream30ultrasc2_draft.inst.cfg │ │ ├── stream30ultrasc2_extra_coarse.inst.cfg │ │ ├── stream30ultrasc2_fast.inst.cfg │ │ ├── stream30ultrasc2_high.inst.cfg │ │ ├── stream30ultrasc2_normal.inst.cfg │ │ ├── stream30ultrasc_coarse.inst.cfg │ │ ├── stream30ultrasc_draft.inst.cfg │ │ ├── stream30ultrasc_extra_coarse.inst.cfg │ │ ├── stream30ultrasc_fast.inst.cfg │ │ ├── stream30ultrasc_high.inst.cfg │ │ └── stream30ultrasc_normal.inst.cfg │ ├── voron2 │ │ ├── voron2_global_extrafast_quality.inst.cfg │ │ ├── voron2_global_extrafine_quality.inst.cfg │ │ ├── voron2_global_fast_quality.inst.cfg │ │ ├── voron2_global_fine_quality.inst.cfg │ │ ├── voron2_global_normal_quality.inst.cfg │ │ ├── voron2_global_sprint_quality.inst.cfg │ │ ├── voron2_global_supersprint_quality.inst.cfg │ │ ├── voron2_global_ultrasprint_quality.inst.cfg │ │ ├── voron2_v6_0.25_ABS_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_ABS_fast.inst.cfg │ │ ├── voron2_v6_0.25_ABS_fine.inst.cfg │ │ ├── voron2_v6_0.25_ABS_normal.inst.cfg │ │ ├── voron2_v6_0.25_ASA_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_ASA_fast.inst.cfg │ │ ├── voron2_v6_0.25_ASA_fine.inst.cfg │ │ ├── voron2_v6_0.25_ASA_normal.inst.cfg │ │ ├── voron2_v6_0.25_Nylon_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_Nylon_fast.inst.cfg │ │ ├── voron2_v6_0.25_Nylon_fine.inst.cfg │ │ ├── voron2_v6_0.25_Nylon_normal.inst.cfg │ │ ├── voron2_v6_0.25_PC_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_PC_fast.inst.cfg │ │ ├── voron2_v6_0.25_PC_fine.inst.cfg │ │ ├── voron2_v6_0.25_PC_normal.inst.cfg │ │ ├── voron2_v6_0.25_PETG_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_PETG_fast.inst.cfg │ │ ├── voron2_v6_0.25_PETG_fine.inst.cfg │ │ ├── voron2_v6_0.25_PETG_normal.inst.cfg │ │ ├── voron2_v6_0.25_PLA_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_PLA_fast.inst.cfg │ │ ├── voron2_v6_0.25_PLA_fine.inst.cfg │ │ ├── voron2_v6_0.25_PLA_normal.inst.cfg │ │ ├── voron2_v6_0.25_PVA_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_PVA_fast.inst.cfg │ │ ├── voron2_v6_0.25_PVA_fine.inst.cfg │ │ ├── voron2_v6_0.25_PVA_normal.inst.cfg │ │ ├── voron2_v6_0.25_TPU_extrafine.inst.cfg │ │ ├── voron2_v6_0.25_TPU_fast.inst.cfg │ │ ├── voron2_v6_0.25_TPU_fine.inst.cfg │ │ ├── voron2_v6_0.25_TPU_normal.inst.cfg │ │ ├── voron2_v6_0.30_ABS_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_ABS_fast.inst.cfg │ │ ├── voron2_v6_0.30_ABS_fine.inst.cfg │ │ ├── voron2_v6_0.30_ABS_normal.inst.cfg │ │ ├── voron2_v6_0.30_ASA_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_ASA_fast.inst.cfg │ │ ├── voron2_v6_0.30_ASA_fine.inst.cfg │ │ ├── voron2_v6_0.30_ASA_normal.inst.cfg │ │ ├── voron2_v6_0.30_Nylon_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_Nylon_fast.inst.cfg │ │ ├── voron2_v6_0.30_Nylon_fine.inst.cfg │ │ ├── voron2_v6_0.30_Nylon_normal.inst.cfg │ │ ├── voron2_v6_0.30_PC_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_PC_fast.inst.cfg │ │ ├── voron2_v6_0.30_PC_fine.inst.cfg │ │ ├── voron2_v6_0.30_PC_normal.inst.cfg │ │ ├── voron2_v6_0.30_PETG_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_PETG_fast.inst.cfg │ │ ├── voron2_v6_0.30_PETG_fine.inst.cfg │ │ ├── voron2_v6_0.30_PETG_normal.inst.cfg │ │ ├── voron2_v6_0.30_PLA_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_PLA_fast.inst.cfg │ │ ├── voron2_v6_0.30_PLA_fine.inst.cfg │ │ ├── voron2_v6_0.30_PLA_normal.inst.cfg │ │ ├── voron2_v6_0.30_PVA_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_PVA_fast.inst.cfg │ │ ├── voron2_v6_0.30_PVA_fine.inst.cfg │ │ ├── voron2_v6_0.30_PVA_normal.inst.cfg │ │ ├── voron2_v6_0.30_TPU_extrafine.inst.cfg │ │ ├── voron2_v6_0.30_TPU_fast.inst.cfg │ │ ├── voron2_v6_0.30_TPU_fine.inst.cfg │ │ ├── voron2_v6_0.30_TPU_normal.inst.cfg │ │ ├── voron2_v6_0.35_ABS_fast.inst.cfg │ │ ├── voron2_v6_0.35_ABS_fine.inst.cfg │ │ ├── voron2_v6_0.35_ABS_normal.inst.cfg │ │ ├── voron2_v6_0.35_ASA_fast.inst.cfg │ │ ├── voron2_v6_0.35_ASA_fine.inst.cfg │ │ ├── voron2_v6_0.35_ASA_normal.inst.cfg │ │ ├── voron2_v6_0.35_Nylon_fast.inst.cfg │ │ ├── voron2_v6_0.35_Nylon_fine.inst.cfg │ │ ├── voron2_v6_0.35_Nylon_normal.inst.cfg │ │ ├── voron2_v6_0.35_PC_fast.inst.cfg │ │ ├── voron2_v6_0.35_PC_fine.inst.cfg │ │ ├── voron2_v6_0.35_PC_normal.inst.cfg │ │ ├── voron2_v6_0.35_PETG_fast.inst.cfg │ │ ├── voron2_v6_0.35_PETG_fine.inst.cfg │ │ ├── voron2_v6_0.35_PETG_normal.inst.cfg │ │ ├── voron2_v6_0.35_PLA_fast.inst.cfg │ │ ├── voron2_v6_0.35_PLA_fine.inst.cfg │ │ ├── voron2_v6_0.35_PLA_normal.inst.cfg │ │ ├── voron2_v6_0.35_PVA_fast.inst.cfg │ │ ├── voron2_v6_0.35_PVA_fine.inst.cfg │ │ ├── voron2_v6_0.35_PVA_normal.inst.cfg │ │ ├── voron2_v6_0.35_TPU_fast.inst.cfg │ │ ├── voron2_v6_0.35_TPU_fine.inst.cfg │ │ ├── voron2_v6_0.35_TPU_normal.inst.cfg │ │ ├── voron2_v6_0.40_ABS_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_ABS_fast.inst.cfg │ │ ├── voron2_v6_0.40_ABS_fine.inst.cfg │ │ ├── voron2_v6_0.40_ABS_normal.inst.cfg │ │ ├── voron2_v6_0.40_ASA_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_ASA_fast.inst.cfg │ │ ├── voron2_v6_0.40_ASA_fine.inst.cfg │ │ ├── voron2_v6_0.40_ASA_normal.inst.cfg │ │ ├── voron2_v6_0.40_Nylon_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_Nylon_fast.inst.cfg │ │ ├── voron2_v6_0.40_Nylon_fine.inst.cfg │ │ ├── voron2_v6_0.40_Nylon_normal.inst.cfg │ │ ├── voron2_v6_0.40_PC_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_PC_fast.inst.cfg │ │ ├── voron2_v6_0.40_PC_fine.inst.cfg │ │ ├── voron2_v6_0.40_PC_normal.inst.cfg │ │ ├── voron2_v6_0.40_PETG_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_PETG_fast.inst.cfg │ │ ├── voron2_v6_0.40_PETG_fine.inst.cfg │ │ ├── voron2_v6_0.40_PETG_normal.inst.cfg │ │ ├── voron2_v6_0.40_PLA_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_PLA_fast.inst.cfg │ │ ├── voron2_v6_0.40_PLA_fine.inst.cfg │ │ ├── voron2_v6_0.40_PLA_normal.inst.cfg │ │ ├── voron2_v6_0.40_PVA_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_PVA_fast.inst.cfg │ │ ├── voron2_v6_0.40_PVA_fine.inst.cfg │ │ ├── voron2_v6_0.40_PVA_normal.inst.cfg │ │ ├── voron2_v6_0.40_TPU_extrafast.inst.cfg │ │ ├── voron2_v6_0.40_TPU_fast.inst.cfg │ │ ├── voron2_v6_0.40_TPU_fine.inst.cfg │ │ ├── voron2_v6_0.40_TPU_normal.inst.cfg │ │ ├── voron2_v6_0.50_ABS_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_ABS_fast.inst.cfg │ │ ├── voron2_v6_0.50_ABS_normal.inst.cfg │ │ ├── voron2_v6_0.50_ABS_sprint.inst.cfg │ │ ├── voron2_v6_0.50_ASA_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_ASA_fast.inst.cfg │ │ ├── voron2_v6_0.50_ASA_normal.inst.cfg │ │ ├── voron2_v6_0.50_ASA_sprint.inst.cfg │ │ ├── voron2_v6_0.50_Nylon_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_Nylon_fast.inst.cfg │ │ ├── voron2_v6_0.50_Nylon_normal.inst.cfg │ │ ├── voron2_v6_0.50_Nylon_sprint.inst.cfg │ │ ├── voron2_v6_0.50_PC_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_PC_fast.inst.cfg │ │ ├── voron2_v6_0.50_PC_normal.inst.cfg │ │ ├── voron2_v6_0.50_PC_sprint.inst.cfg │ │ ├── voron2_v6_0.50_PETG_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_PETG_fast.inst.cfg │ │ ├── voron2_v6_0.50_PETG_normal.inst.cfg │ │ ├── voron2_v6_0.50_PETG_sprint.inst.cfg │ │ ├── voron2_v6_0.50_PLA_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_PLA_fast.inst.cfg │ │ ├── voron2_v6_0.50_PLA_normal.inst.cfg │ │ ├── voron2_v6_0.50_PLA_sprint.inst.cfg │ │ ├── voron2_v6_0.50_PVA_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_PVA_fast.inst.cfg │ │ ├── voron2_v6_0.50_PVA_normal.inst.cfg │ │ ├── voron2_v6_0.50_PVA_sprint.inst.cfg │ │ ├── voron2_v6_0.50_TPU_extrafast.inst.cfg │ │ ├── voron2_v6_0.50_TPU_fast.inst.cfg │ │ ├── voron2_v6_0.50_TPU_normal.inst.cfg │ │ ├── voron2_v6_0.50_TPU_sprint.inst.cfg │ │ ├── voron2_v6_0.60_ABS_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_ABS_fast.inst.cfg │ │ ├── voron2_v6_0.60_ABS_sprint.inst.cfg │ │ ├── voron2_v6_0.60_ASA_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_ASA_fast.inst.cfg │ │ ├── voron2_v6_0.60_ASA_sprint.inst.cfg │ │ ├── voron2_v6_0.60_Nylon_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_Nylon_fast.inst.cfg │ │ ├── voron2_v6_0.60_Nylon_sprint.inst.cfg │ │ ├── voron2_v6_0.60_PC_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_PC_fast.inst.cfg │ │ ├── voron2_v6_0.60_PC_sprint.inst.cfg │ │ ├── voron2_v6_0.60_PETG_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_PETG_fast.inst.cfg │ │ ├── voron2_v6_0.60_PETG_sprint.inst.cfg │ │ ├── voron2_v6_0.60_PLA_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_PLA_fast.inst.cfg │ │ ├── voron2_v6_0.60_PLA_sprint.inst.cfg │ │ ├── voron2_v6_0.60_PVA_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_PVA_fast.inst.cfg │ │ ├── voron2_v6_0.60_PVA_sprint.inst.cfg │ │ ├── voron2_v6_0.60_TPU_extrafast.inst.cfg │ │ ├── voron2_v6_0.60_TPU_fast.inst.cfg │ │ ├── voron2_v6_0.60_TPU_sprint.inst.cfg │ │ ├── voron2_v6_0.80_ABS_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_ABS_sprint.inst.cfg │ │ ├── voron2_v6_0.80_ABS_supersprint.inst.cfg │ │ ├── voron2_v6_0.80_ASA_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_ASA_sprint.inst.cfg │ │ ├── voron2_v6_0.80_ASA_supersprint.inst.cfg │ │ ├── voron2_v6_0.80_Nylon_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_Nylon_sprint.inst.cfg │ │ ├── voron2_v6_0.80_Nylon_supersprint.inst.cfg │ │ ├── voron2_v6_0.80_PC_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_PC_sprint.inst.cfg │ │ ├── voron2_v6_0.80_PC_supersprint.inst.cfg │ │ ├── voron2_v6_0.80_PETG_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_PETG_sprint.inst.cfg │ │ ├── voron2_v6_0.80_PETG_supersprint.inst.cfg │ │ ├── voron2_v6_0.80_PLA_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_PLA_sprint.inst.cfg │ │ ├── voron2_v6_0.80_PLA_supersprint.inst.cfg │ │ ├── voron2_v6_0.80_PVA_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_PVA_sprint.inst.cfg │ │ ├── voron2_v6_0.80_PVA_supersprint.inst.cfg │ │ ├── voron2_v6_0.80_TPU_extrafast.inst.cfg │ │ ├── voron2_v6_0.80_TPU_sprint.inst.cfg │ │ ├── voron2_v6_0.80_TPU_supersprint.inst.cfg │ │ ├── voron2_volcano_0.40_ABS_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_ABS_fast.inst.cfg │ │ ├── voron2_volcano_0.40_ABS_normal.inst.cfg │ │ ├── voron2_volcano_0.40_ASA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_ASA_fast.inst.cfg │ │ ├── voron2_volcano_0.40_ASA_normal.inst.cfg │ │ ├── voron2_volcano_0.40_Nylon_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_Nylon_fast.inst.cfg │ │ ├── voron2_volcano_0.40_Nylon_normal.inst.cfg │ │ ├── voron2_volcano_0.40_PC_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_PC_fast.inst.cfg │ │ ├── voron2_volcano_0.40_PC_normal.inst.cfg │ │ ├── voron2_volcano_0.40_PETG_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_PETG_fast.inst.cfg │ │ ├── voron2_volcano_0.40_PETG_normal.inst.cfg │ │ ├── voron2_volcano_0.40_PLA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_PLA_fast.inst.cfg │ │ ├── voron2_volcano_0.40_PLA_normal.inst.cfg │ │ ├── voron2_volcano_0.40_PVA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_PVA_fast.inst.cfg │ │ ├── voron2_volcano_0.40_PVA_normal.inst.cfg │ │ ├── voron2_volcano_0.40_TPU_extrafast.inst.cfg │ │ ├── voron2_volcano_0.40_TPU_fast.inst.cfg │ │ ├── voron2_volcano_0.40_TPU_normal.inst.cfg │ │ ├── voron2_volcano_0.60_ABS_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_ABS_fast.inst.cfg │ │ ├── voron2_volcano_0.60_ABS_sprint.inst.cfg │ │ ├── voron2_volcano_0.60_ASA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_ASA_fast.inst.cfg │ │ ├── voron2_volcano_0.60_ASA_sprint.inst.cfg │ │ ├── voron2_volcano_0.60_Nylon_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_Nylon_fast.inst.cfg │ │ ├── voron2_volcano_0.60_Nylon_sprint.inst.cfg │ │ ├── voron2_volcano_0.60_PC_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_PC_fast.inst.cfg │ │ ├── voron2_volcano_0.60_PC_sprint.inst.cfg │ │ ├── voron2_volcano_0.60_PETG_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_PETG_fast.inst.cfg │ │ ├── voron2_volcano_0.60_PETG_sprint.inst.cfg │ │ ├── voron2_volcano_0.60_PLA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_PLA_fast.inst.cfg │ │ ├── voron2_volcano_0.60_PLA_sprint.inst.cfg │ │ ├── voron2_volcano_0.60_PVA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_PVA_fast.inst.cfg │ │ ├── voron2_volcano_0.60_PVA_sprint.inst.cfg │ │ ├── voron2_volcano_0.60_TPU_extrafast.inst.cfg │ │ ├── voron2_volcano_0.60_TPU_fast.inst.cfg │ │ ├── voron2_volcano_0.60_TPU_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_ABS_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_ABS_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_ABS_supersprint.inst.cfg │ │ ├── voron2_volcano_0.80_ASA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_ASA_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_ASA_supersprint.inst.cfg │ │ ├── voron2_volcano_0.80_Nylon_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_Nylon_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_Nylon_supersprint.inst.cfg │ │ ├── voron2_volcano_0.80_PC_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_PC_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_PC_supersprint.inst.cfg │ │ ├── voron2_volcano_0.80_PETG_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_PETG_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_PETG_supersprint.inst.cfg │ │ ├── voron2_volcano_0.80_PLA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_PLA_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_PLA_supersprint.inst.cfg │ │ ├── voron2_volcano_0.80_PVA_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_PVA_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_PVA_supersprint.inst.cfg │ │ ├── voron2_volcano_0.80_TPU_extrafast.inst.cfg │ │ ├── voron2_volcano_0.80_TPU_sprint.inst.cfg │ │ ├── voron2_volcano_0.80_TPU_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_ABS_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_ABS_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_ABS_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.00_ASA_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_ASA_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_ASA_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.00_Nylon_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_Nylon_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.00_PC_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_PC_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_PC_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.00_PETG_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_PETG_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_PETG_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.00_PLA_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_PLA_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_PLA_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.00_PVA_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_PVA_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_PVA_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.00_TPU_sprint.inst.cfg │ │ ├── voron2_volcano_1.00_TPU_supersprint.inst.cfg │ │ ├── voron2_volcano_1.00_TPU_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_ABS_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_ABS_supersprint.inst.cfg │ │ ├── voron2_volcano_1.20_ABS_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_ASA_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_ASA_supersprint.inst.cfg │ │ ├── voron2_volcano_1.20_ASA_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_Nylon_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_Nylon_supersprint.inst.cfg │ │ ├── voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_PC_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_PC_supersprint.inst.cfg │ │ ├── voron2_volcano_1.20_PC_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_PETG_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_PETG_supersprint.inst.cfg │ │ ├── voron2_volcano_1.20_PETG_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_PLA_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_PLA_supersprint.inst.cfg │ │ ├── voron2_volcano_1.20_PLA_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_PVA_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_PVA_supersprint.inst.cfg │ │ ├── voron2_volcano_1.20_PVA_ultrasprint.inst.cfg │ │ ├── voron2_volcano_1.20_TPU_sprint.inst.cfg │ │ ├── voron2_volcano_1.20_TPU_supersprint.inst.cfg │ │ └── voron2_volcano_1.20_TPU_ultrasprint.inst.cfg │ ├── vzbot │ │ └── base │ │ │ ├── ABS │ │ │ ├── vzbot_0.2_ABS_super.inst.cfg │ │ │ ├── vzbot_0.2_ABS_ultra.inst.cfg │ │ │ ├── vzbot_0.3_ABS_adaptive.inst.cfg │ │ │ ├── vzbot_0.3_ABS_low.inst.cfg │ │ │ ├── vzbot_0.3_ABS_standard.inst.cfg │ │ │ ├── vzbot_0.3_ABS_super.inst.cfg │ │ │ ├── vzbot_0.4_ABS_adaptive.inst.cfg │ │ │ ├── vzbot_0.4_ABS_low.inst.cfg │ │ │ ├── vzbot_0.4_ABS_standard.inst.cfg │ │ │ ├── vzbot_0.4_ABS_super.inst.cfg │ │ │ ├── vzbot_0.5_ABS_adaptive.inst.cfg │ │ │ ├── vzbot_0.5_ABS_low.inst.cfg │ │ │ ├── vzbot_0.5_ABS_standard.inst.cfg │ │ │ ├── vzbot_0.5_ABS_super.inst.cfg │ │ │ ├── vzbot_0.6_ABS_standard.inst.cfg │ │ │ ├── vzbot_0.8_ABS_draft.inst.cfg │ │ │ └── vzbot_1.0_ABS_draft.inst.cfg │ │ │ ├── PC │ │ │ ├── vzbot_0.2_PC_super.inst.cfg │ │ │ ├── vzbot_0.2_PC_ultra.inst.cfg │ │ │ ├── vzbot_0.3_PC_adaptive.inst.cfg │ │ │ ├── vzbot_0.3_PC_low.inst.cfg │ │ │ ├── vzbot_0.3_PC_standard.inst.cfg │ │ │ ├── vzbot_0.3_PC_super.inst.cfg │ │ │ ├── vzbot_0.4_PC_adaptive.inst.cfg │ │ │ ├── vzbot_0.4_PC_low.inst.cfg │ │ │ ├── vzbot_0.4_PC_standard.inst.cfg │ │ │ ├── vzbot_0.4_PC_super.inst.cfg │ │ │ ├── vzbot_0.5_PC_adaptive.inst.cfg │ │ │ ├── vzbot_0.5_PC_low.inst.cfg │ │ │ ├── vzbot_0.5_PC_standard.inst.cfg │ │ │ ├── vzbot_0.5_PC_super.inst.cfg │ │ │ ├── vzbot_0.6_PC_standard.inst.cfg │ │ │ ├── vzbot_0.8_PC_draft.inst.cfg │ │ │ └── vzbot_1.0_PC_draft.inst.cfg │ │ │ ├── PETG │ │ │ ├── vzbot_0.2_PETG_super.inst.cfg │ │ │ ├── vzbot_0.2_PETG_ultra.inst.cfg │ │ │ ├── vzbot_0.3_PETG_adaptive.inst.cfg │ │ │ ├── vzbot_0.3_PETG_low.inst.cfg │ │ │ ├── vzbot_0.3_PETG_standard.inst.cfg │ │ │ ├── vzbot_0.3_PETG_super.inst.cfg │ │ │ ├── vzbot_0.4_PETG_adaptive.inst.cfg │ │ │ ├── vzbot_0.4_PETG_low.inst.cfg │ │ │ ├── vzbot_0.4_PETG_standard.inst.cfg │ │ │ ├── vzbot_0.4_PETG_super.inst.cfg │ │ │ ├── vzbot_0.5_PETG_adaptive.inst.cfg │ │ │ ├── vzbot_0.5_PETG_low.inst.cfg │ │ │ ├── vzbot_0.5_PETG_standard.inst.cfg │ │ │ ├── vzbot_0.5_PETG_super.inst.cfg │ │ │ ├── vzbot_0.6_PETG_standard.inst.cfg │ │ │ ├── vzbot_0.8_PETG_draft.inst.cfg │ │ │ └── vzbot_1.0_PETG_draft.inst.cfg │ │ │ ├── PLA │ │ │ ├── vzbot_0.2_PLA_super.inst.cfg │ │ │ ├── vzbot_0.2_PLA_ultra.inst.cfg │ │ │ ├── vzbot_0.3_PLA_adaptive.inst.cfg │ │ │ ├── vzbot_0.3_PLA_low.inst.cfg │ │ │ ├── vzbot_0.3_PLA_standard.inst.cfg │ │ │ ├── vzbot_0.3_PLA_super.inst.cfg │ │ │ ├── vzbot_0.4_PLA_adaptive.inst.cfg │ │ │ ├── vzbot_0.4_PLA_low.inst.cfg │ │ │ ├── vzbot_0.4_PLA_standard.inst.cfg │ │ │ ├── vzbot_0.4_PLA_super.inst.cfg │ │ │ ├── vzbot_0.5_PLA_adaptive.inst.cfg │ │ │ ├── vzbot_0.5_PLA_low.inst.cfg │ │ │ ├── vzbot_0.5_PLA_standard.inst.cfg │ │ │ ├── vzbot_0.5_PLA_super.inst.cfg │ │ │ ├── vzbot_0.6_PLA_draft.inst.cfg │ │ │ ├── vzbot_0.6_PLA_low.inst.cfg │ │ │ ├── vzbot_0.6_PLA_standard.inst.cfg │ │ │ ├── vzbot_0.8_PLA_draft.inst.cfg │ │ │ └── vzbot_1.0_PLA_draft.inst.cfg │ │ │ ├── PVA │ │ │ ├── vzbot_0.2_PVA_super.inst.cfg │ │ │ ├── vzbot_0.2_PVA_ultra.inst.cfg │ │ │ ├── vzbot_0.3_PVA_adaptive.inst.cfg │ │ │ ├── vzbot_0.3_PVA_low.inst.cfg │ │ │ ├── vzbot_0.3_PVA_standard.inst.cfg │ │ │ ├── vzbot_0.3_PVA_super.inst.cfg │ │ │ ├── vzbot_0.4_PVA_adaptive.inst.cfg │ │ │ ├── vzbot_0.4_PVA_low.inst.cfg │ │ │ ├── vzbot_0.4_PVA_standard.inst.cfg │ │ │ ├── vzbot_0.4_PVA_super.inst.cfg │ │ │ ├── vzbot_0.5_PVA_adaptive.inst.cfg │ │ │ ├── vzbot_0.5_PVA_low.inst.cfg │ │ │ ├── vzbot_0.5_PVA_standard.inst.cfg │ │ │ ├── vzbot_0.5_PVA_super.inst.cfg │ │ │ ├── vzbot_0.6_PVA_standard.inst.cfg │ │ │ ├── vzbot_0.8_PVA_draft.inst.cfg │ │ │ └── vzbot_1.0_PVA_draft.inst.cfg │ │ │ ├── TPU │ │ │ ├── vzbot_0.3_TPU_adaptive.inst.cfg │ │ │ ├── vzbot_0.3_TPU_standard.inst.cfg │ │ │ ├── vzbot_0.3_TPU_super.inst.cfg │ │ │ ├── vzbot_0.4_TPU_adaptive.inst.cfg │ │ │ ├── vzbot_0.4_TPU_standard.inst.cfg │ │ │ ├── vzbot_0.4_TPU_super.inst.cfg │ │ │ ├── vzbot_0.5_TPU_adaptive.inst.cfg │ │ │ ├── vzbot_0.5_TPU_standard.inst.cfg │ │ │ ├── vzbot_0.5_TPU_super.inst.cfg │ │ │ ├── vzbot_0.6_TPU_standard.inst.cfg │ │ │ ├── vzbot_0.8_TPU_draft.inst.cfg │ │ │ └── vzbot_1.0_TPU_draft.inst.cfg │ │ │ ├── nylon │ │ │ ├── vzbot_0.2_nylon_super.inst.cfg │ │ │ ├── vzbot_0.2_nylon_ultra.inst.cfg │ │ │ ├── vzbot_0.3_nylon_adaptive.inst.cfg │ │ │ ├── vzbot_0.3_nylon_low.inst.cfg │ │ │ ├── vzbot_0.3_nylon_standard.inst.cfg │ │ │ ├── vzbot_0.3_nylon_super.inst.cfg │ │ │ ├── vzbot_0.4_nylon_adaptive.inst.cfg │ │ │ ├── vzbot_0.4_nylon_low.inst.cfg │ │ │ ├── vzbot_0.4_nylon_standard.inst.cfg │ │ │ ├── vzbot_0.4_nylon_super.inst.cfg │ │ │ ├── vzbot_0.5_nylon_adaptive.inst.cfg │ │ │ ├── vzbot_0.5_nylon_low.inst.cfg │ │ │ ├── vzbot_0.5_nylon_standard.inst.cfg │ │ │ ├── vzbot_0.5_nylon_super.inst.cfg │ │ │ ├── vzbot_0.6_nylon_standard.inst.cfg │ │ │ ├── vzbot_0.8_nylon_draft.inst.cfg │ │ │ └── vzbot_1.0_nylon_draft.inst.cfg │ │ │ ├── vzbot_global_adaptive.inst.cfg │ │ │ ├── vzbot_global_draft.inst.cfg │ │ │ ├── vzbot_global_low.inst.cfg │ │ │ ├── vzbot_global_standard.inst.cfg │ │ │ ├── vzbot_global_super.inst.cfg │ │ │ └── vzbot_global_ultra.inst.cfg │ ├── weedo_x40 │ │ ├── Extrudr │ │ │ ├── weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg │ │ │ ├── weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg │ │ │ ├── weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg │ │ │ └── weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg │ │ ├── Verbatim │ │ │ ├── weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg │ │ │ ├── weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg │ │ │ ├── weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg │ │ │ ├── weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg │ │ │ ├── weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg │ │ │ ├── weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg │ │ │ ├── weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg │ │ │ └── weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_ABS_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_ABS_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_ABS_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_ASA_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_ASA_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_ASA_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_BVOH_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_BVOH_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_BVOH_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_CPE_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_CPE_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_CPE_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_HIPS_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_HIPS_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_HIPS_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_PETG_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_PETG_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_PETG_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_PLA_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_PLA_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_PLA_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_PVA_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_PVA_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_PVA_Normal.inst.cfg │ │ ├── weedo_x40_0.4_generic_TPU_Draft.inst.cfg │ │ ├── weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_TPU_Fine.inst.cfg │ │ ├── weedo_x40_0.4_generic_TPU_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_ABS_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_ABS_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_ABS_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_ABS_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_ASA_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_ASA_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_ASA_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_ASA_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_BVOH_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_BVOH_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_BVOH_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_CPE_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_CPE_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_CPE_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_CPE_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_HIPS_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_HIPS_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_HIPS_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_PETG_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_PETG_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_PETG_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_PETG_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_PLA_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_PLA_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_PLA_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_PLA_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_PVA_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_PVA_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_PVA_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_PVA_Normal.inst.cfg │ │ ├── weedo_x40_0.6_generic_TPU_Coarse.inst.cfg │ │ ├── weedo_x40_0.6_generic_TPU_Draft.inst.cfg │ │ ├── weedo_x40_0.6_generic_TPU_Fine.inst.cfg │ │ ├── weedo_x40_0.6_generic_TPU_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_ABS_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_ABS_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_ABS_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_ASA_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_ASA_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_ASA_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_BVOH_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_BVOH_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_CPE_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_CPE_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_CPE_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_HIPS_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_HIPS_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_PETG_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_PETG_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_PETG_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_PLA_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_PLA_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_PLA_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_PVA_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_PVA_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_PVA_Normal.inst.cfg │ │ ├── weedo_x40_0.8_generic_TPU_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_TPU_Draft.inst.cfg │ │ ├── weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_0.8_generic_TPU_Normal.inst.cfg │ │ ├── weedo_x40_global_Coarse.inst.cfg │ │ ├── weedo_x40_global_Draft.inst.cfg │ │ ├── weedo_x40_global_Extra_Coarse.inst.cfg │ │ ├── weedo_x40_global_Extra_Fine.inst.cfg │ │ ├── weedo_x40_global_Fine.inst.cfg │ │ └── weedo_x40_global_Normal.inst.cfg │ ├── xyzprinting │ │ ├── abs │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg │ │ ├── anti_bact │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg │ │ ├── carbon_fiber │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg │ │ ├── color_pla │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg │ │ ├── flexible │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg │ │ ├── metallic_pla │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg │ │ ├── nylon │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg │ │ ├── pahtcf15 │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg │ │ ├── pc │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg │ │ ├── petcf15 │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg │ │ ├── petg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg │ │ ├── pla │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg │ │ ├── ppgf30 │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg │ │ ├── tough_pla │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg │ │ ├── tpu │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg │ │ │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg │ │ │ ├── xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg │ │ │ └── xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg │ │ ├── xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg │ │ ├── xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg │ │ ├── xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg │ │ ├── xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg │ │ ├── xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg │ │ ├── xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg │ │ ├── xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg │ │ ├── xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg │ │ ├── xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg │ │ └── xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg │ ├── zav_base │ │ ├── abs │ │ │ ├── nozzle_0_20 │ │ │ │ ├── zav_abs_nozzle_0.20_layer_0.05.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.20_layer_0.10.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.20_layer_0.15.inst.cfg │ │ │ ├── nozzle_0_25 │ │ │ │ ├── zav_abs_nozzle_0.25_layer_0.05.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.25_layer_0.10.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.25_layer_0.15.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.25_layer_0.20.inst.cfg │ │ │ ├── nozzle_0_30 │ │ │ │ ├── zav_abs_nozzle_0.30_layer_0.10.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.30_layer_0.15.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.30_layer_0.20.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.30_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_35 │ │ │ │ ├── zav_abs_nozzle_0.35_layer_0.10.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.35_layer_0.15.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.35_layer_0.20.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.35_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_40 │ │ │ │ ├── zav_abs_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.40_layer_0.25.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── nozzle_0_45 │ │ │ │ ├── zav_abs_nozzle_0.45_layer_0.10.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.45_layer_0.15.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.45_layer_0.20.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.45_layer_0.25.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.45_layer_0.30.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.45_layer_0.35.inst.cfg │ │ │ ├── nozzle_0_50 │ │ │ │ ├── zav_abs_nozzle_0.50_layer_0.15.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.50_layer_0.20.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.50_layer_0.25.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.50_layer_0.30.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.50_layer_0.35.inst.cfg │ │ │ ├── nozzle_0_60 │ │ │ │ ├── zav_abs_nozzle_0.60_layer_0.15.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.60_layer_0.20.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.60_layer_0.25.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.60_layer_0.30.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.60_layer_0.35.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.60_layer_0.40.inst.cfg │ │ │ ├── nozzle_0_80 │ │ │ │ ├── zav_abs_nozzle_0.80_layer_0.20.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.80_layer_0.25.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.80_layer_0.30.inst.cfg │ │ │ │ ├── zav_abs_nozzle_0.80_layer_0.35.inst.cfg │ │ │ │ └── zav_abs_nozzle_0.80_layer_0.40.inst.cfg │ │ │ └── nozzle_1_00 │ │ │ │ ├── zav_abs_nozzle_1.00_layer_0.25.inst.cfg │ │ │ │ ├── zav_abs_nozzle_1.00_layer_0.30.inst.cfg │ │ │ │ ├── zav_abs_nozzle_1.00_layer_0.35.inst.cfg │ │ │ │ └── zav_abs_nozzle_1.00_layer_0.40.inst.cfg │ │ ├── petg │ │ │ ├── nozzle_0_20 │ │ │ │ ├── zav_petg_nozzle_0.20_layer_0.05.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.20_layer_0.10.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.20_layer_0.15.inst.cfg │ │ │ ├── nozzle_0_25 │ │ │ │ ├── zav_petg_nozzle_0.25_layer_0.05.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.25_layer_0.10.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.25_layer_0.15.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.25_layer_0.20.inst.cfg │ │ │ ├── nozzle_0_30 │ │ │ │ ├── zav_petg_nozzle_0.30_layer_0.10.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.30_layer_0.15.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.30_layer_0.20.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.30_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_35 │ │ │ │ ├── zav_petg_nozzle_0.35_layer_0.10.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.35_layer_0.15.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.35_layer_0.20.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.35_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_40 │ │ │ │ ├── zav_petg_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.40_layer_0.25.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── nozzle_0_45 │ │ │ │ ├── zav_petg_nozzle_0.45_layer_0.10.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.45_layer_0.15.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.45_layer_0.20.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.45_layer_0.25.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.45_layer_0.30.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.45_layer_0.35.inst.cfg │ │ │ ├── nozzle_0_50 │ │ │ │ ├── zav_petg_nozzle_0.50_layer_0.15.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.50_layer_0.20.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.50_layer_0.25.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.50_layer_0.30.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.50_layer_0.35.inst.cfg │ │ │ ├── nozzle_0_60 │ │ │ │ ├── zav_petg_nozzle_0.60_layer_0.15.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.60_layer_0.20.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.60_layer_0.25.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.60_layer_0.30.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.60_layer_0.35.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.60_layer_0.40.inst.cfg │ │ │ ├── nozzle_0_80 │ │ │ │ ├── zav_petg_nozzle_0.80_layer_0.20.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.80_layer_0.25.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.80_layer_0.30.inst.cfg │ │ │ │ ├── zav_petg_nozzle_0.80_layer_0.35.inst.cfg │ │ │ │ └── zav_petg_nozzle_0.80_layer_0.40.inst.cfg │ │ │ └── nozzle_1_00 │ │ │ │ ├── zav_petg_nozzle_1.00_layer_0.25.inst.cfg │ │ │ │ ├── zav_petg_nozzle_1.00_layer_0.30.inst.cfg │ │ │ │ ├── zav_petg_nozzle_1.00_layer_0.35.inst.cfg │ │ │ │ └── zav_petg_nozzle_1.00_layer_0.40.inst.cfg │ │ ├── pla │ │ │ ├── nozzle_0_20 │ │ │ │ ├── zav_pla_nozzle_0.20_layer_0.05.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.20_layer_0.10.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.20_layer_0.15.inst.cfg │ │ │ ├── nozzle_0_25 │ │ │ │ ├── zav_pla_nozzle_0.25_layer_0.05.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.25_layer_0.10.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.25_layer_0.15.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.25_layer_0.20.inst.cfg │ │ │ ├── nozzle_0_30 │ │ │ │ ├── zav_pla_nozzle_0.30_layer_0.10.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.30_layer_0.15.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.30_layer_0.20.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.30_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_35 │ │ │ │ ├── zav_pla_nozzle_0.35_layer_0.10.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.35_layer_0.15.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.35_layer_0.20.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.35_layer_0.25.inst.cfg │ │ │ ├── nozzle_0_40 │ │ │ │ ├── zav_pla_nozzle_0.40_layer_0.10.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.40_layer_0.15.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.40_layer_0.20.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.40_layer_0.25.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.40_layer_0.30.inst.cfg │ │ │ ├── nozzle_0_45 │ │ │ │ ├── zav_pla_nozzle_0.45_layer_0.10.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.45_layer_0.15.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.45_layer_0.20.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.45_layer_0.25.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.45_layer_0.30.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.45_layer_0.35.inst.cfg │ │ │ ├── nozzle_0_50 │ │ │ │ ├── zav_pla_nozzle_0.50_layer_0.15.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.50_layer_0.20.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.50_layer_0.25.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.50_layer_0.30.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.50_layer_0.35.inst.cfg │ │ │ ├── nozzle_0_60 │ │ │ │ ├── zav_pla_nozzle_0.60_layer_0.15.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.60_layer_0.20.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.60_layer_0.25.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.60_layer_0.30.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.60_layer_0.35.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.60_layer_0.40.inst.cfg │ │ │ ├── nozzle_0_80 │ │ │ │ ├── zav_pla_nozzle_0.80_layer_0.20.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.80_layer_0.25.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.80_layer_0.30.inst.cfg │ │ │ │ ├── zav_pla_nozzle_0.80_layer_0.35.inst.cfg │ │ │ │ └── zav_pla_nozzle_0.80_layer_0.40.inst.cfg │ │ │ └── nozzle_1_00 │ │ │ │ ├── zav_pla_nozzle_1.00_layer_0.25.inst.cfg │ │ │ │ ├── zav_pla_nozzle_1.00_layer_0.30.inst.cfg │ │ │ │ ├── zav_pla_nozzle_1.00_layer_0.35.inst.cfg │ │ │ │ └── zav_pla_nozzle_1.00_layer_0.40.inst.cfg │ │ ├── zav_layer_0.05.inst.cfg │ │ ├── zav_layer_0.10.inst.cfg │ │ ├── zav_layer_0.15.inst.cfg │ │ ├── zav_layer_0.20.inst.cfg │ │ ├── zav_layer_0.25.inst.cfg │ │ ├── zav_layer_0.30.inst.cfg │ │ ├── zav_layer_0.35.inst.cfg │ │ └── zav_layer_0.40.inst.cfg │ ├── zyyx_plus │ │ ├── ABS │ │ │ ├── zyyx_plus_abs_fast.inst.cfg │ │ │ ├── zyyx_plus_abs_fine.inst.cfg │ │ │ └── zyyx_plus_abs_normal.inst.cfg │ │ ├── FLEX │ │ │ ├── zyyx_plus_flex_fast.inst.cfg │ │ │ ├── zyyx_plus_flex_fine.inst.cfg │ │ │ └── zyyx_plus_flex_normal.inst.cfg │ │ ├── PLA │ │ │ ├── zyyx_plus_pla_fast.inst.cfg │ │ │ ├── zyyx_plus_pla_fine.inst.cfg │ │ │ └── zyyx_plus_pla_normal.inst.cfg │ │ ├── zyyx_plus_global_fast.inst.cfg │ │ ├── zyyx_plus_global_fine.inst.cfg │ │ └── zyyx_plus_global_normal.inst.cfg │ └── zyyx_pro │ │ ├── carbon06 │ │ ├── flex │ │ │ ├── zyyx_pro_06_flex_fast.inst.cfg │ │ │ ├── zyyx_pro_06_flex_fine.inst.cfg │ │ │ └── zyyx_pro_06_flex_normal.inst.cfg │ │ ├── zyyx_pro_06_global_fast.inst.cfg │ │ ├── zyyx_pro_06_global_fine.inst.cfg │ │ └── zyyx_pro_06_global_normal.inst.cfg │ │ ├── carbon12 │ │ ├── flex │ │ │ └── zyyx_pro_12_flex_normal.inst.cfg │ │ └── zyyx_pro_12_global_normal.inst.cfg │ │ ├── multi02 │ │ ├── flex │ │ │ ├── zyyx_pro_02_flex_fast.inst.cfg │ │ │ ├── zyyx_pro_02_flex_fine.inst.cfg │ │ │ └── zyyx_pro_02_flex_normal.inst.cfg │ │ ├── zyyx_pro_02_global_fast.inst.cfg │ │ ├── zyyx_pro_02_global_fine.inst.cfg │ │ └── zyyx_pro_02_global_normal.inst.cfg │ │ ├── multi04 │ │ ├── flex │ │ │ ├── zyyx_pro_04_flex_fast.inst.cfg │ │ │ ├── zyyx_pro_04_flex_fine.inst.cfg │ │ │ └── zyyx_pro_04_flex_normal.inst.cfg │ │ ├── zyyx_pro_04_global_fast.inst.cfg │ │ ├── zyyx_pro_04_global_fine.inst.cfg │ │ └── zyyx_pro_04_global_normal.inst.cfg │ │ └── multi08 │ │ ├── flex │ │ ├── zyyx_pro_08_flex_fast.inst.cfg │ │ ├── zyyx_pro_08_flex_fine.inst.cfg │ │ └── zyyx_pro_08_flex_normal.inst.cfg │ │ ├── zyyx_pro_08_global_fast.inst.cfg │ │ ├── zyyx_pro_08_global_fine.inst.cfg │ │ └── zyyx_pro_08_global_normal.inst.cfg ├── setting_visibility │ ├── advanced.cfg │ ├── basic.cfg │ └── expert.cfg ├── shaders │ ├── camera_distance.shader │ ├── grid.shader │ ├── overhang.shader │ ├── striped.shader │ ├── transparent_object.shader │ ├── xray.shader │ └── xray_composite.shader ├── texts │ ├── change_log.txt │ └── product_to_id.json ├── themes │ ├── cura-dark-colorblind │ │ └── theme.json │ ├── cura-dark │ │ ├── images │ │ │ ├── add_printer.svg │ │ │ ├── cura_connected_printers.svg │ │ │ ├── first_run_ultimaker_cloud.svg │ │ │ ├── third_party_printer.svg │ │ │ ├── ultimaker_printer.svg │ │ │ └── welcome_cura.svg │ │ └── theme.json │ ├── cura-light-colorblind │ │ └── theme.json │ ├── cura-light │ │ ├── fonts │ │ │ ├── noto-sans-display │ │ │ │ ├── LICENSE_OFL.txt │ │ │ │ ├── NotoSansDisplay-Black.ttf │ │ │ │ ├── NotoSansDisplay-BlackItalic.ttf │ │ │ │ ├── NotoSansDisplay-Bold.ttf │ │ │ │ ├── NotoSansDisplay-BoldItalic.ttf │ │ │ │ ├── NotoSansDisplay-ExtraBold.ttf │ │ │ │ ├── NotoSansDisplay-ExtraBoldItalic.ttf │ │ │ │ ├── NotoSansDisplay-ExtraLight.ttf │ │ │ │ ├── NotoSansDisplay-ExtraLightItalic.ttf │ │ │ │ ├── NotoSansDisplay-Italic.ttf │ │ │ │ ├── NotoSansDisplay-Light.ttf │ │ │ │ ├── NotoSansDisplay-LightItalic.ttf │ │ │ │ ├── NotoSansDisplay-Medium.ttf │ │ │ │ ├── NotoSansDisplay-MediumItalic.ttf │ │ │ │ ├── NotoSansDisplay-Regular.ttf │ │ │ │ ├── NotoSansDisplay-SemiBold.ttf │ │ │ │ ├── NotoSansDisplay-SemiBoldItalic.ttf │ │ │ │ ├── NotoSansDisplay-Thin.ttf │ │ │ │ ├── NotoSansDisplay-ThinItalic.ttf │ │ │ │ └── README │ │ │ └── noto-sans │ │ │ │ ├── LICENSE_OFL.txt │ │ │ │ ├── NotoSans-Black.ttf │ │ │ │ ├── NotoSans-BlackItalic.ttf │ │ │ │ ├── NotoSans-Bold.ttf │ │ │ │ ├── NotoSans-BoldItalic.ttf │ │ │ │ ├── NotoSans-ExtraBold.ttf │ │ │ │ ├── NotoSans-ExtraBoldItalic.ttf │ │ │ │ ├── NotoSans-ExtraLight.ttf │ │ │ │ ├── NotoSans-ExtraLightItalic.ttf │ │ │ │ ├── NotoSans-Italic.ttf │ │ │ │ ├── NotoSans-Light.ttf │ │ │ │ ├── NotoSans-LightItalic.ttf │ │ │ │ ├── NotoSans-Medium.ttf │ │ │ │ ├── NotoSans-MediumItalic.ttf │ │ │ │ ├── NotoSans-Regular.ttf │ │ │ │ ├── NotoSans-SemiBold.ttf │ │ │ │ ├── NotoSans-SemiBoldItalic.ttf │ │ │ │ ├── NotoSans-Thin.ttf │ │ │ │ ├── NotoSans-ThinItalic.ttf │ │ │ │ └── README │ │ ├── icons │ │ │ ├── default │ │ │ │ ├── Adhesion.svg │ │ │ │ ├── Anneal.svg │ │ │ │ ├── ArrowDoubleCircleRight.svg │ │ │ │ ├── ArrowDown.svg │ │ │ │ ├── ArrowFourWay.svg │ │ │ │ ├── ArrowLeft.svg │ │ │ │ ├── ArrowReset.svg │ │ │ │ ├── Bandage.svg │ │ │ │ ├── BlackMagic.svg │ │ │ │ ├── BlockGrid.svg │ │ │ │ ├── BlockSupportOverlaps.svg │ │ │ │ ├── Browser.svg │ │ │ │ ├── Brush.svg │ │ │ │ ├── Bug.svg │ │ │ │ ├── Buildplate.svg │ │ │ │ ├── Cancel.svg │ │ │ │ ├── CancelBlock.svg │ │ │ │ ├── CancelCircle.svg │ │ │ │ ├── Certified.svg │ │ │ │ ├── Check.svg │ │ │ │ ├── CheckCircle.svg │ │ │ │ ├── ChevronSingleDown.svg │ │ │ │ ├── ChevronSingleLeft.svg │ │ │ │ ├── ChevronSingleRight.svg │ │ │ │ ├── ChevronSingleUp.svg │ │ │ │ ├── Circle.svg │ │ │ │ ├── CircleMask.svg │ │ │ │ ├── CircleOutline.svg │ │ │ │ ├── Clock.svg │ │ │ │ ├── Cloud.svg │ │ │ │ ├── CuraShareIcon.svg │ │ │ │ ├── DocumentFilled.svg │ │ │ │ ├── Download.svg │ │ │ │ ├── DualExtrusion.svg │ │ │ │ ├── EmptyInfo.svg │ │ │ │ ├── Eraser.svg │ │ │ │ ├── Experiment.svg │ │ │ │ ├── Extruder.svg │ │ │ │ ├── ExtruderColor.svg │ │ │ │ ├── Eye.svg │ │ │ │ ├── Fan.svg │ │ │ │ ├── Folder.svg │ │ │ │ ├── Formula.svg │ │ │ │ ├── Function.svg │ │ │ │ ├── GearCheck.svg │ │ │ │ ├── Globe.svg │ │ │ │ ├── Guide.svg │ │ │ │ ├── Hamburger.svg │ │ │ │ ├── Hammer.svg │ │ │ │ ├── Heart.svg │ │ │ │ ├── Help.svg │ │ │ │ ├── House.svg │ │ │ │ ├── Infill0.svg │ │ │ │ ├── Infill1.svg │ │ │ │ ├── Infill100.svg │ │ │ │ ├── Infill2.svg │ │ │ │ ├── Infill3.svg │ │ │ │ ├── InfillGradual.svg │ │ │ │ ├── Information.svg │ │ │ │ ├── Knowledge.svg │ │ │ │ ├── LayFlat.svg │ │ │ │ ├── LayFlatOnFace.svg │ │ │ │ ├── Layers.svg │ │ │ │ ├── Library.svg │ │ │ │ ├── Lightning.svg │ │ │ │ ├── Link.svg │ │ │ │ ├── LinkExternal.svg │ │ │ │ ├── Magnifier.svg │ │ │ │ ├── MeshType.svg │ │ │ │ ├── MeshTypeIntersect.svg │ │ │ │ ├── MeshTypeNormal.svg │ │ │ │ ├── MeshTypeSupport.svg │ │ │ │ ├── Minus.svg │ │ │ │ ├── Mirror.svg │ │ │ │ ├── Nozzle.svg │ │ │ │ ├── Nut.svg │ │ │ │ ├── Pen.svg │ │ │ │ ├── People.svg │ │ │ │ ├── Play.svg │ │ │ │ ├── Plugin.svg │ │ │ │ ├── Plus.svg │ │ │ │ ├── PrintQuality.svg │ │ │ │ ├── PrintShell.svg │ │ │ │ ├── PrintTopBottom.svg │ │ │ │ ├── PrintTravel.svg │ │ │ │ ├── PrintWalls.svg │ │ │ │ ├── Printer.svg │ │ │ │ ├── PrinterTriple.svg │ │ │ │ ├── Quick.svg │ │ │ │ ├── Rotate.svg │ │ │ │ ├── Save.svg │ │ │ │ ├── Scale.svg │ │ │ │ ├── ScaleMax.svg │ │ │ │ ├── Seam.svg │ │ │ │ ├── Settings.svg │ │ │ │ ├── Shield.svg │ │ │ │ ├── Shop.svg │ │ │ │ ├── ShoppingCart.svg │ │ │ │ ├── Sliders.svg │ │ │ │ ├── Solid.svg │ │ │ │ ├── Speak.svg │ │ │ │ ├── SpeedOMeter.svg │ │ │ │ ├── Spinner.svg │ │ │ │ ├── Spool.svg │ │ │ │ ├── Sputnik.svg │ │ │ │ ├── Star.svg │ │ │ │ ├── StarFilled.svg │ │ │ │ ├── Support.svg │ │ │ │ ├── SupportBlocker.svg │ │ │ │ ├── ThreeDots.svg │ │ │ │ ├── UltimakerCura.svg │ │ │ │ ├── View3D.svg │ │ │ │ ├── ViewFront.svg │ │ │ │ ├── ViewLeft.svg │ │ │ │ ├── ViewRight.svg │ │ │ │ ├── ViewTop.svg │ │ │ │ ├── Visual.svg │ │ │ │ └── Warning.svg │ │ │ ├── deprecated_icons.json │ │ │ ├── high │ │ │ │ ├── Bug.svg │ │ │ │ ├── Certificate.svg │ │ │ │ ├── Help.svg │ │ │ │ ├── Library.svg │ │ │ │ ├── People.svg │ │ │ │ ├── Plugin.svg │ │ │ │ ├── PrinterTriple.svg │ │ │ │ ├── Settings.svg │ │ │ │ ├── Shop.svg │ │ │ │ ├── Speak.svg │ │ │ │ └── Spool.svg │ │ │ ├── low │ │ │ │ ├── Cancel.svg │ │ │ │ ├── CancelBadge.svg │ │ │ │ ├── Check.svg │ │ │ │ ├── CheckBadge.svg │ │ │ │ ├── CheckBlueBG.svg │ │ │ │ ├── CheckBoxFill.svg │ │ │ │ ├── CheckThin.svg │ │ │ │ ├── CircleSolid.svg │ │ │ │ ├── CloudBadge.svg │ │ │ │ ├── Dot.svg │ │ │ │ ├── ErrorBadge.svg │ │ │ │ ├── Warning.svg │ │ │ │ └── WarningBadge.svg │ │ │ └── medium │ │ │ │ ├── Extruder.svg │ │ │ │ ├── ExtruderColor.svg │ │ │ │ ├── Folder.svg │ │ │ │ ├── Printer.svg │ │ │ │ ├── PrinterTriple.svg │ │ │ │ └── Sliders.svg │ │ ├── images │ │ │ ├── 3d_printer_faded.svg │ │ │ ├── add_printer.svg │ │ │ ├── cura_connected_printers.svg │ │ │ ├── enterprise.png │ │ │ ├── first_run_machine_types.svg │ │ │ ├── first_run_material_usage.svg │ │ │ ├── first_run_number_slices.svg │ │ │ ├── first_run_print_settings.svg │ │ │ ├── first_run_ultimaker_cloud.svg │ │ │ ├── header_pattern.svg │ │ │ ├── insert_usb.svg │ │ │ ├── logo.svg │ │ │ ├── material_ecosystem.svg │ │ │ ├── third_party_printer.svg │ │ │ ├── ultimaker_printer.svg │ │ │ └── welcome_cura.svg │ │ └── theme.json │ └── daily_test_colors.json └── variants │ ├── arjun │ ├── arjun300_0.2.inst.cfg │ ├── arjun300_0.3.inst.cfg │ ├── arjun300_0.4.inst.cfg │ ├── arjun300_0.5.inst.cfg │ ├── arjun300_0.6.inst.cfg │ ├── arjun300_0.8.inst.cfg │ ├── arjun300_dm_0.2.inst.cfg │ ├── arjun300_dm_0.3.inst.cfg │ ├── arjun300_dm_0.4.inst.cfg │ ├── arjun300_dm_0.5.inst.cfg │ ├── arjun300_dm_0.6.inst.cfg │ ├── arjun300_dm_0.8.inst.cfg │ ├── arjun300_mm_0.2.inst.cfg │ ├── arjun300_mm_0.3.inst.cfg │ ├── arjun300_mm_0.4.inst.cfg │ ├── arjun300_mm_0.5.inst.cfg │ ├── arjun300_mm_0.6.inst.cfg │ ├── arjun300_mm_0.8.inst.cfg │ ├── arjun300_pva_0.2.inst.cfg │ ├── arjun300_pva_0.3.inst.cfg │ ├── arjun300_pva_0.4.inst.cfg │ ├── arjun300_pva_0.5.inst.cfg │ ├── arjun300_pva_0.6.inst.cfg │ ├── arjun300_pva_0.8.inst.cfg │ ├── arjunpro300_0.2.inst.cfg │ ├── arjunpro300_0.3.inst.cfg │ ├── arjunpro300_0.4.inst.cfg │ ├── arjunpro300_0.5.inst.cfg │ ├── arjunpro300_0.6.inst.cfg │ ├── arjunpro300_0.8.inst.cfg │ ├── arjunpro300_dm_0.2.inst.cfg │ ├── arjunpro300_dm_0.3.inst.cfg │ ├── arjunpro300_dm_0.4.inst.cfg │ ├── arjunpro300_dm_0.5.inst.cfg │ ├── arjunpro300_dm_0.6.inst.cfg │ ├── arjunpro300_dm_0.8.inst.cfg │ ├── arjunpro300_mm_0.2.inst.cfg │ ├── arjunpro300_mm_0.3.inst.cfg │ ├── arjunpro300_mm_0.4.inst.cfg │ ├── arjunpro300_mm_0.5.inst.cfg │ ├── arjunpro300_mm_0.6.inst.cfg │ ├── arjunpro300_mm_0.8.inst.cfg │ ├── arjunpro300_pva_0.2.inst.cfg │ ├── arjunpro300_pva_0.3.inst.cfg │ ├── arjunpro300_pva_0.4.inst.cfg │ ├── arjunpro300_pva_0.5.inst.cfg │ ├── arjunpro300_pva_0.6.inst.cfg │ └── arjunpro300_pva_0.8.inst.cfg │ ├── artillery │ ├── artillery_base_0.2.inst.cfg │ ├── artillery_base_0.3.inst.cfg │ ├── artillery_base_0.4.inst.cfg │ ├── artillery_base_0.6.inst.cfg │ ├── artillery_base_0.8.inst.cfg │ ├── artillery_base_1.0.inst.cfg │ ├── artillery_genius_0.2.inst.cfg │ ├── artillery_genius_0.3.inst.cfg │ ├── artillery_genius_0.4.inst.cfg │ ├── artillery_genius_0.5.inst.cfg │ ├── artillery_genius_0.6.inst.cfg │ ├── artillery_genius_0.8.inst.cfg │ ├── artillery_genius_1.0.inst.cfg │ ├── artillery_hornet_0.2.inst.cfg │ ├── artillery_hornet_0.3.inst.cfg │ ├── artillery_hornet_0.4.inst.cfg │ ├── artillery_hornet_0.5.inst.cfg │ ├── artillery_hornet_0.6.inst.cfg │ ├── artillery_hornet_0.8.inst.cfg │ ├── artillery_hornet_1.0.inst.cfg │ ├── artillery_sidewinder_x1_0.2.inst.cfg │ ├── artillery_sidewinder_x1_0.3.inst.cfg │ ├── artillery_sidewinder_x1_0.4.inst.cfg │ ├── artillery_sidewinder_x1_0.6.inst.cfg │ ├── artillery_sidewinder_x1_0.8.inst.cfg │ └── artillery_sidewinder_x1_1.0.inst.cfg │ ├── atmat │ ├── atmat_asterion_ht_v6_0.40.inst.cfg │ ├── atmat_asterion_ht_v6_0.80.inst.cfg │ ├── atmat_asterion_v6_0.40.inst.cfg │ ├── atmat_asterion_v6_0.80.inst.cfg │ ├── atmat_galaxy_500_v6_0.40.inst.cfg │ ├── atmat_galaxy_500_v6_0.80.inst.cfg │ ├── atmat_galaxy_600_v6_0.40.inst.cfg │ ├── atmat_galaxy_600_v6_0.80.inst.cfg │ ├── atmat_signal_pro_300_v1_v6_0.40.inst.cfg │ ├── atmat_signal_pro_300_v1_v6_0.80.inst.cfg │ ├── atmat_signal_pro_300_v2_v6_0.40.inst.cfg │ ├── atmat_signal_pro_300_v2_v6_0.80.inst.cfg │ ├── atmat_signal_pro_400_v1_v6_0.40.inst.cfg │ ├── atmat_signal_pro_400_v1_v6_0.80.inst.cfg │ ├── atmat_signal_pro_400_v2_v6_0.40.inst.cfg │ ├── atmat_signal_pro_400_v2_v6_0.80.inst.cfg │ ├── atmat_signal_pro_500_v1_v6_0.40.inst.cfg │ ├── atmat_signal_pro_500_v1_v6_0.80.inst.cfg │ ├── atmat_signal_pro_500_v2_v6_0.40.inst.cfg │ ├── atmat_signal_pro_500_v2_v6_0.80.inst.cfg │ ├── atmat_signal_xl_v6_0.40.inst.cfg │ ├── atmat_signal_xl_v6_0.80.inst.cfg │ ├── atmat_signal_xxl_v6_0.40.inst.cfg │ ├── atmat_signal_xxl_v6_0.80.inst.cfg │ ├── atmat_signal_xxxl_v6_0.40.inst.cfg │ ├── atmat_signal_xxxl_v6_0.80.inst.cfg │ ├── atom3_all_metal_brass_0.2.inst.cfg │ ├── atom3_all_metal_brass_0.4.inst.cfg │ ├── atom3_all_metal_brass_0.6.inst.cfg │ ├── atom3_lite_all_metal_brass_0.2.inst.cfg │ ├── atom3_lite_all_metal_brass_0.4.inst.cfg │ ├── atom3_lite_all_metal_brass_0.6.inst.cfg │ ├── atom3_lite_ptfe_brass_0.2.inst.cfg │ ├── atom3_lite_ptfe_brass_0.4.inst.cfg │ ├── atom3_lite_ptfe_brass_0.6.inst.cfg │ ├── atom3_ptfe_brass_0.2.inst.cfg │ ├── atom3_ptfe_brass_0.4.inst.cfg │ └── atom3_ptfe_brass_0.6.inst.cfg │ ├── biqu │ ├── biqu_b1_0.2.inst.cfg │ ├── biqu_b1_0.3.inst.cfg │ ├── biqu_b1_0.4.inst.cfg │ ├── biqu_b1_0.5.inst.cfg │ ├── biqu_b1_0.6.inst.cfg │ ├── biqu_b1_0.8.inst.cfg │ ├── biqu_b1_abl_0.2.inst.cfg │ ├── biqu_b1_abl_0.3.inst.cfg │ ├── biqu_b1_abl_0.4.inst.cfg │ ├── biqu_b1_abl_0.5.inst.cfg │ ├── biqu_b1_abl_0.6.inst.cfg │ ├── biqu_b1_abl_0.8.inst.cfg │ ├── biqu_b2_0.2.inst.cfg │ ├── biqu_b2_0.3.inst.cfg │ ├── biqu_b2_0.4.inst.cfg │ ├── biqu_b2_0.5.inst.cfg │ ├── biqu_b2_0.6.inst.cfg │ ├── biqu_b2_0.8.inst.cfg │ ├── biqu_base_0.2.inst.cfg │ ├── biqu_base_0.3.inst.cfg │ ├── biqu_base_0.4.inst.cfg │ ├── biqu_base_0.5.inst.cfg │ ├── biqu_base_0.6.inst.cfg │ ├── biqu_base_0.8.inst.cfg │ ├── biqu_bx_abl_0.2.inst.cfg │ ├── biqu_bx_abl_0.3.inst.cfg │ ├── biqu_bx_abl_0.4.inst.cfg │ ├── biqu_bx_abl_0.5.inst.cfg │ ├── biqu_bx_abl_0.6.inst.cfg │ ├── biqu_bx_abl_0.8.inst.cfg │ ├── biqu_hurakan_0.2.inst.cfg │ ├── biqu_hurakan_0.3.inst.cfg │ ├── biqu_hurakan_0.4.inst.cfg │ ├── biqu_hurakan_0.5.inst.cfg │ ├── biqu_hurakan_0.6.inst.cfg │ └── biqu_hurakan_0.8.inst.cfg │ ├── blocks │ ├── blocks_mkii_0.20.inst.cfg │ ├── blocks_mkii_0.30.inst.cfg │ ├── blocks_mkii_0.40.inst.cfg │ ├── blocks_mkii_0.50.inst.cfg │ ├── blocks_mkii_0.60.inst.cfg │ ├── blocks_mkii_0.80.inst.cfg │ ├── blocks_one_0.20.inst.cfg │ ├── blocks_one_0.30.inst.cfg │ ├── blocks_one_0.40.inst.cfg │ ├── blocks_one_0.50.inst.cfg │ ├── blocks_one_0.60.inst.cfg │ ├── blocks_one_0.80.inst.cfg │ ├── blocks_pros100_0.40.inst.cfg │ ├── blocks_pros100_0.50.inst.cfg │ ├── blocks_pros100_0.60.inst.cfg │ ├── blocks_pros100_0.80.inst.cfg │ ├── blocks_pros100_1.0.inst.cfg │ ├── blocks_pros100_1.2.inst.cfg │ ├── blocks_pros30_0.40.inst.cfg │ ├── blocks_pros30_0.50.inst.cfg │ ├── blocks_pros30_0.60.inst.cfg │ ├── blocks_pros30_0.80.inst.cfg │ ├── blocks_pros30_1.0.inst.cfg │ ├── blocks_pros30_1.2.inst.cfg │ ├── blocks_r21_ht_0.3.inst.cfg │ ├── blocks_r21_ht_0.4.inst.cfg │ ├── blocks_r21_ht_0.5.inst.cfg │ ├── blocks_r21_ht_0.6.inst.cfg │ ├── blocks_r21_ht_0.8.inst.cfg │ ├── blocks_r21_st_0.20.inst.cfg │ ├── blocks_r21_st_0.30.inst.cfg │ ├── blocks_r21_st_0.40.inst.cfg │ ├── blocks_r21_st_0.50.inst.cfg │ ├── blocks_r21_st_0.60.inst.cfg │ ├── blocks_r21_st_0.80.inst.cfg │ ├── blocks_r21_st_1.0.inst.cfg │ ├── blocks_r21_st_1.2.inst.cfg │ ├── blocks_rd50_ht_0.3.inst.cfg │ ├── blocks_rd50_ht_0.4.inst.cfg │ ├── blocks_rd50_ht_0.5.inst.cfg │ ├── blocks_rd50_ht_0.6.inst.cfg │ ├── blocks_rd50_ht_0.8.inst.cfg │ ├── blocks_rd50_st_0.20.inst.cfg │ ├── blocks_rd50_st_0.30.inst.cfg │ ├── blocks_rd50_st_0.40.inst.cfg │ ├── blocks_rd50_st_0.50.inst.cfg │ ├── blocks_rd50_st_0.60.inst.cfg │ ├── blocks_rd50_st_0.80.inst.cfg │ ├── blocks_rd50_st_1.0.inst.cfg │ ├── blocks_rd50_st_1.2.inst.cfg │ ├── blocks_rd50duplicate_ht_0.3.inst.cfg │ ├── blocks_rd50duplicate_ht_0.4.inst.cfg │ ├── blocks_rd50duplicate_ht_0.5.inst.cfg │ ├── blocks_rd50duplicate_ht_0.6.inst.cfg │ ├── blocks_rd50duplicate_ht_0.8.inst.cfg │ ├── blocks_rd50duplicate_st_0.20.inst.cfg │ ├── blocks_rd50duplicate_st_0.30.inst.cfg │ ├── blocks_rd50duplicate_st_0.40.inst.cfg │ ├── blocks_rd50duplicate_st_0.50.inst.cfg │ ├── blocks_rd50duplicate_st_0.60.inst.cfg │ ├── blocks_rd50duplicate_st_0.80.inst.cfg │ ├── blocks_rd50duplicate_st_1.0.inst.cfg │ ├── blocks_rd50duplicate_st_1.2.inst.cfg │ ├── blocks_rd50mirror_ht_0.3.inst.cfg │ ├── blocks_rd50mirror_ht_0.4.inst.cfg │ ├── blocks_rd50mirror_ht_0.5.inst.cfg │ ├── blocks_rd50mirror_ht_0.6.inst.cfg │ ├── blocks_rd50mirror_ht_0.8.inst.cfg │ ├── blocks_rd50mirror_st_0.20.inst.cfg │ ├── blocks_rd50mirror_st_0.30.inst.cfg │ ├── blocks_rd50mirror_st_0.40.inst.cfg │ ├── blocks_rd50mirror_st_0.50.inst.cfg │ ├── blocks_rd50mirror_st_0.60.inst.cfg │ ├── blocks_rd50mirror_st_0.80.inst.cfg │ ├── blocks_rd50mirror_st_1.0.inst.cfg │ ├── blocks_rd50mirror_st_1.2.inst.cfg │ ├── blocks_zero_0.20.inst.cfg │ ├── blocks_zero_0.30.inst.cfg │ ├── blocks_zero_0.40.inst.cfg │ ├── blocks_zero_0.50.inst.cfg │ ├── blocks_zero_0.60.inst.cfg │ └── blocks_zero_0.80.inst.cfg │ ├── cartesio │ ├── cartesio_0.25.inst.cfg │ ├── cartesio_0.4.inst.cfg │ └── cartesio_0.8.inst.cfg │ ├── crazy3dprint │ ├── crazy3dprint_base_0.40.inst.cfg │ └── crazy3dprint_cz_300_0.40.inst.cfg │ ├── creality │ ├── creality_base_0.2.inst.cfg │ ├── creality_base_0.3.inst.cfg │ ├── creality_base_0.4.inst.cfg │ ├── creality_base_0.5.inst.cfg │ ├── creality_base_0.6.inst.cfg │ ├── creality_base_0.8.inst.cfg │ ├── creality_base_1.0.inst.cfg │ ├── creality_cr100_0.4.inst.cfg │ ├── creality_cr10_0.2.inst.cfg │ ├── creality_cr10_0.3.inst.cfg │ ├── creality_cr10_0.4.inst.cfg │ ├── creality_cr10_0.5.inst.cfg │ ├── creality_cr10_0.6.inst.cfg │ ├── creality_cr10_0.8.inst.cfg │ ├── creality_cr10_1.0.inst.cfg │ ├── creality_cr10max_0.2.inst.cfg │ ├── creality_cr10max_0.3.inst.cfg │ ├── creality_cr10max_0.4.inst.cfg │ ├── creality_cr10max_0.5.inst.cfg │ ├── creality_cr10max_0.6.inst.cfg │ ├── creality_cr10max_0.8.inst.cfg │ ├── creality_cr10max_1.0.inst.cfg │ ├── creality_cr10mini_0.2.inst.cfg │ ├── creality_cr10mini_0.3.inst.cfg │ ├── creality_cr10mini_0.4.inst.cfg │ ├── creality_cr10mini_0.5.inst.cfg │ ├── creality_cr10mini_0.6.inst.cfg │ ├── creality_cr10mini_0.8.inst.cfg │ ├── creality_cr10mini_1.0.inst.cfg │ ├── creality_cr10s4_0.2.inst.cfg │ ├── creality_cr10s4_0.3.inst.cfg │ ├── creality_cr10s4_0.4.inst.cfg │ ├── creality_cr10s4_0.5.inst.cfg │ ├── creality_cr10s4_0.6.inst.cfg │ ├── creality_cr10s4_0.8.inst.cfg │ ├── creality_cr10s4_1.0.inst.cfg │ ├── creality_cr10s5_0.2.inst.cfg │ ├── creality_cr10s5_0.3.inst.cfg │ ├── creality_cr10s5_0.4.inst.cfg │ ├── creality_cr10s5_0.5.inst.cfg │ ├── creality_cr10s5_0.6.inst.cfg │ ├── creality_cr10s5_0.8.inst.cfg │ ├── creality_cr10s5_1.0.inst.cfg │ ├── creality_cr10s_0.2.inst.cfg │ ├── creality_cr10s_0.3.inst.cfg │ ├── creality_cr10s_0.4.inst.cfg │ ├── creality_cr10s_0.5.inst.cfg │ ├── creality_cr10s_0.6.inst.cfg │ ├── creality_cr10s_0.8.inst.cfg │ ├── creality_cr10s_1.0.inst.cfg │ ├── creality_cr10smart_0.2.inst.cfg │ ├── creality_cr10smart_0.3.inst.cfg │ ├── creality_cr10smart_0.4.inst.cfg │ ├── creality_cr10smart_0.5.inst.cfg │ ├── creality_cr10smart_0.6.inst.cfg │ ├── creality_cr10smart_0.8.inst.cfg │ ├── creality_cr10smart_1.0.inst.cfg │ ├── creality_cr10spro_0.2.inst.cfg │ ├── creality_cr10spro_0.3.inst.cfg │ ├── creality_cr10spro_0.4.inst.cfg │ ├── creality_cr10spro_0.5.inst.cfg │ ├── creality_cr10spro_0.6.inst.cfg │ ├── creality_cr10spro_0.8.inst.cfg │ ├── creality_cr10spro_1.0.inst.cfg │ ├── creality_cr20_0.2.inst.cfg │ ├── creality_cr20_0.3.inst.cfg │ ├── creality_cr20_0.4.inst.cfg │ ├── creality_cr20_0.5.inst.cfg │ ├── creality_cr20_0.6.inst.cfg │ ├── creality_cr20_0.8.inst.cfg │ ├── creality_cr20_1.0.inst.cfg │ ├── creality_cr20pro_0.2.inst.cfg │ ├── creality_cr20pro_0.3.inst.cfg │ ├── creality_cr20pro_0.4.inst.cfg │ ├── creality_cr20pro_0.5.inst.cfg │ ├── creality_cr20pro_0.6.inst.cfg │ ├── creality_cr20pro_0.8.inst.cfg │ ├── creality_cr20pro_1.0.inst.cfg │ ├── creality_cr6se_0.2.inst.cfg │ ├── creality_cr6se_0.3.inst.cfg │ ├── creality_cr6se_0.4.inst.cfg │ ├── creality_cr6se_0.5.inst.cfg │ ├── creality_cr6se_0.6.inst.cfg │ ├── creality_cr6se_0.8.inst.cfg │ ├── creality_cr6se_1.0.inst.cfg │ ├── creality_crm4_0.2.inst.cfg │ ├── creality_crm4_0.3.inst.cfg │ ├── creality_crm4_0.4.inst.cfg │ ├── creality_crm4_0.5.inst.cfg │ ├── creality_crm4_0.6.inst.cfg │ ├── creality_crm4_0.8.inst.cfg │ ├── creality_crm4_1.0.inst.cfg │ ├── creality_ender2_0.2.inst.cfg │ ├── creality_ender2_0.3.inst.cfg │ ├── creality_ender2_0.4.inst.cfg │ ├── creality_ender2_0.5.inst.cfg │ ├── creality_ender2_0.6.inst.cfg │ ├── creality_ender2_0.8.inst.cfg │ ├── creality_ender2_1.0.inst.cfg │ ├── creality_ender3_0.2.inst.cfg │ ├── creality_ender3_0.3.inst.cfg │ ├── creality_ender3_0.4.inst.cfg │ ├── creality_ender3_0.5.inst.cfg │ ├── creality_ender3_0.6.inst.cfg │ ├── creality_ender3_0.8.inst.cfg │ ├── creality_ender3_1.0.inst.cfg │ ├── creality_ender3max_0.2.inst.cfg │ ├── creality_ender3max_0.3.inst.cfg │ ├── creality_ender3max_0.4.inst.cfg │ ├── creality_ender3max_0.5.inst.cfg │ ├── creality_ender3max_0.6.inst.cfg │ ├── creality_ender3max_0.8.inst.cfg │ ├── creality_ender3max_1.0.inst.cfg │ ├── creality_ender3pro_0.2.inst.cfg │ ├── creality_ender3pro_0.3.inst.cfg │ ├── creality_ender3pro_0.4.inst.cfg │ ├── creality_ender3pro_0.5.inst.cfg │ ├── creality_ender3pro_0.6.inst.cfg │ ├── creality_ender3pro_0.8.inst.cfg │ ├── creality_ender3pro_1.0.inst.cfg │ ├── creality_ender3s1_0.2.inst.cfg │ ├── creality_ender3s1_0.3.inst.cfg │ ├── creality_ender3s1_0.4.inst.cfg │ ├── creality_ender3s1_0.5.inst.cfg │ ├── creality_ender3s1_0.6.inst.cfg │ ├── creality_ender3s1_0.8.inst.cfg │ ├── creality_ender3s1_1.0.inst.cfg │ ├── creality_ender3s1plus_0.2.inst.cfg │ ├── creality_ender3s1plus_0.3.inst.cfg │ ├── creality_ender3s1plus_0.4.inst.cfg │ ├── creality_ender3s1plus_0.5.inst.cfg │ ├── creality_ender3s1plus_0.6.inst.cfg │ ├── creality_ender3s1plus_0.8.inst.cfg │ ├── creality_ender3s1plus_1.0.inst.cfg │ ├── creality_ender3s1pro_0.2.inst.cfg │ ├── creality_ender3s1pro_0.3.inst.cfg │ ├── creality_ender3s1pro_0.4.inst.cfg │ ├── creality_ender3s1pro_0.5.inst.cfg │ ├── creality_ender3s1pro_0.6.inst.cfg │ ├── creality_ender3s1pro_0.8.inst.cfg │ ├── creality_ender3s1pro_1.0.inst.cfg │ ├── creality_ender3v2neo_0.2.inst.cfg │ ├── creality_ender3v2neo_0.3.inst.cfg │ ├── creality_ender3v2neo_0.4.inst.cfg │ ├── creality_ender3v2neo_0.5.inst.cfg │ ├── creality_ender3v2neo_0.6.inst.cfg │ ├── creality_ender3v2neo_0.8.inst.cfg │ ├── creality_ender3v2neo_1.0.inst.cfg │ ├── creality_ender3v3ke_0.2.inst.cfg │ ├── creality_ender3v3ke_0.3.inst.cfg │ ├── creality_ender3v3ke_0.4.inst.cfg │ ├── creality_ender3v3ke_0.5.inst.cfg │ ├── creality_ender3v3ke_0.6.inst.cfg │ ├── creality_ender3v3ke_0.8.inst.cfg │ ├── creality_ender3v3ke_1.0.inst.cfg │ ├── creality_ender3v3se_0.2.inst.cfg │ ├── creality_ender3v3se_0.3.inst.cfg │ ├── creality_ender3v3se_0.4.inst.cfg │ ├── creality_ender3v3se_0.5.inst.cfg │ ├── creality_ender3v3se_0.6.inst.cfg │ ├── creality_ender3v3se_0.8.inst.cfg │ ├── creality_ender3v3se_1.0.inst.cfg │ ├── creality_ender4_0.2.inst.cfg │ ├── creality_ender4_0.3.inst.cfg │ ├── creality_ender4_0.4.inst.cfg │ ├── creality_ender4_0.5.inst.cfg │ ├── creality_ender4_0.6.inst.cfg │ ├── creality_ender4_0.8.inst.cfg │ ├── creality_ender4_1.0.inst.cfg │ ├── creality_ender5_0.2.inst.cfg │ ├── creality_ender5_0.3.inst.cfg │ ├── creality_ender5_0.4.inst.cfg │ ├── creality_ender5_0.5.inst.cfg │ ├── creality_ender5_0.6.inst.cfg │ ├── creality_ender5_0.8.inst.cfg │ ├── creality_ender5_1.0.inst.cfg │ ├── creality_ender5plus_0.2.inst.cfg │ ├── creality_ender5plus_0.3.inst.cfg │ ├── creality_ender5plus_0.4.inst.cfg │ ├── creality_ender5plus_0.5.inst.cfg │ ├── creality_ender5plus_0.6.inst.cfg │ ├── creality_ender5plus_0.8.inst.cfg │ ├── creality_ender5plus_1.0.inst.cfg │ ├── creality_ender5s1_0.2.inst.cfg │ ├── creality_ender5s1_0.3.inst.cfg │ ├── creality_ender5s1_0.4.inst.cfg │ ├── creality_ender5s1_0.5.inst.cfg │ ├── creality_ender5s1_0.6.inst.cfg │ ├── creality_ender5s1_0.8.inst.cfg │ ├── creality_ender5s1_1.0.inst.cfg │ ├── creality_ender6_0.2.inst.cfg │ ├── creality_ender6_0.3.inst.cfg │ ├── creality_ender6_0.4.inst.cfg │ ├── creality_ender6_0.5.inst.cfg │ ├── creality_ender6_0.6.inst.cfg │ ├── creality_ender6_0.8.inst.cfg │ ├── creality_ender6_1.0.inst.cfg │ ├── creality_k1_max_0.4.inst.cfg │ ├── creality_k1_max_0.6.inst.cfg │ ├── creality_k1_max_0.8.inst.cfg │ ├── creality_sermoond1_0.2.inst.cfg │ ├── creality_sermoond1_0.3.inst.cfg │ ├── creality_sermoond1_0.4.inst.cfg │ ├── creality_sermoond1_0.5.inst.cfg │ ├── creality_sermoond1_0.6.inst.cfg │ ├── creality_sermoond1_0.8.inst.cfg │ ├── creality_sermoond1_1.0.inst.cfg │ └── creality_sermoonv1_0.4.inst.cfg │ ├── dagoma │ ├── dagoma_pro_430_bowden_brass_0.4.inst.cfg │ ├── dagoma_pro_430_bowden_brass_0.8.inst.cfg │ ├── dagoma_pro_430_bowden_brass_1.0.inst.cfg │ ├── dagoma_pro_430_bowden_generic_0.2.inst.cfg │ ├── dagoma_pro_430_bowden_generic_0.4.inst.cfg │ ├── dagoma_pro_430_bowden_generic_0.6.inst.cfg │ ├── dagoma_pro_430_bowden_generic_0.8.inst.cfg │ ├── dagoma_pro_430_bowden_generic_1.0.inst.cfg │ ├── dagoma_pro_430_bowden_generic_1.2.inst.cfg │ ├── dagoma_pro_430_bowden_steel_0.4.inst.cfg │ ├── dagoma_pro_430_bowden_steel_0.8.inst.cfg │ ├── dagoma_pro_430_directdrive_brass_0.4.inst.cfg │ ├── dagoma_pro_430_directdrive_brass_0.8.inst.cfg │ ├── dagoma_pro_430_directdrive_brass_1.0.inst.cfg │ ├── dagoma_pro_430_directdrive_generic_0.2.inst.cfg │ ├── dagoma_pro_430_directdrive_generic_0.4.inst.cfg │ ├── dagoma_pro_430_directdrive_generic_0.6.inst.cfg │ ├── dagoma_pro_430_directdrive_generic_0.8.inst.cfg │ ├── dagoma_pro_430_directdrive_generic_1.0.inst.cfg │ ├── dagoma_pro_430_directdrive_generic_1.2.inst.cfg │ ├── dagoma_pro_430_directdrive_steel_0.4.inst.cfg │ ├── dagoma_pro_430_directdrive_steel_0.8.inst.cfg │ ├── dagoma_pro_430_dual_brass_0.4.inst.cfg │ ├── dagoma_pro_430_dual_brass_0.8.inst.cfg │ ├── dagoma_pro_430_dual_brass_1.0.inst.cfg │ ├── dagoma_pro_430_dual_generic_0.2.inst.cfg │ ├── dagoma_pro_430_dual_generic_0.4.inst.cfg │ ├── dagoma_pro_430_dual_generic_0.6.inst.cfg │ ├── dagoma_pro_430_dual_generic_0.8.inst.cfg │ ├── dagoma_pro_430_dual_generic_1.0.inst.cfg │ ├── dagoma_pro_430_dual_generic_1.2.inst.cfg │ ├── dagoma_pro_430_dual_steel_0.4.inst.cfg │ ├── dagoma_pro_430_dual_steel_0.8.inst.cfg │ ├── dagoma_sigma_0.4.inst.cfg │ ├── dagoma_sigma_0.8.inst.cfg │ ├── dagoma_sigma_pro_brass_0.4.inst.cfg │ ├── dagoma_sigma_pro_brass_0.8.inst.cfg │ ├── dagoma_sigma_pro_dual_brass_0.4.inst.cfg │ ├── dagoma_sigma_pro_dual_brass_0.8.inst.cfg │ ├── dagoma_sigma_pro_dual_steel_0.4.inst.cfg │ ├── dagoma_sigma_pro_dual_steel_0.8.inst.cfg │ ├── dagoma_sigma_pro_steel_0.4.inst.cfg │ └── dagoma_sigma_pro_steel_0.8.inst.cfg │ ├── deltacomb │ ├── deltacomb_dc20_fbe025.inst.cfg │ ├── deltacomb_dc20_fbe040.inst.cfg │ ├── deltacomb_dc20_fbe060.inst.cfg │ ├── deltacomb_dc20_vfbe080.inst.cfg │ ├── deltacomb_dc20dual_dbe025.inst.cfg │ ├── deltacomb_dc20dual_dbe040.inst.cfg │ ├── deltacomb_dc20dual_dbe060.inst.cfg │ ├── deltacomb_dc20dual_vdbe080.inst.cfg │ ├── deltacomb_dc20flux_fbe025.inst.cfg │ ├── deltacomb_dc20flux_fbe040.inst.cfg │ ├── deltacomb_dc20flux_fbe060.inst.cfg │ ├── deltacomb_dc21_fbe025.inst.cfg │ ├── deltacomb_dc21_fbe040.inst.cfg │ ├── deltacomb_dc21_fbe060.inst.cfg │ ├── deltacomb_dc21_vfbe080.inst.cfg │ ├── deltacomb_dc21dual_dbe025.inst.cfg │ ├── deltacomb_dc21dual_dbe040.inst.cfg │ ├── deltacomb_dc21dual_dbe060.inst.cfg │ ├── deltacomb_dc21dual_vdbe080.inst.cfg │ ├── deltacomb_dc21flux_fbe025.inst.cfg │ ├── deltacomb_dc21flux_fbe040.inst.cfg │ ├── deltacomb_dc21flux_fbe060.inst.cfg │ ├── deltacomb_dc30_fbe025.inst.cfg │ ├── deltacomb_dc30_fbe040.inst.cfg │ ├── deltacomb_dc30_fbe060.inst.cfg │ ├── deltacomb_dc30_vfbe080.inst.cfg │ ├── deltacomb_dc30dual_dbe025.inst.cfg │ ├── deltacomb_dc30dual_dbe040.inst.cfg │ ├── deltacomb_dc30dual_dbe060.inst.cfg │ ├── deltacomb_dc30dual_vdbe080.inst.cfg │ ├── deltacomb_dc30flux_fbe025.inst.cfg │ ├── deltacomb_dc30flux_fbe040.inst.cfg │ └── deltacomb_dc30flux_fbe060.inst.cfg │ ├── diy │ ├── diy220_0.2.inst.cfg │ ├── diy220_0.3.inst.cfg │ ├── diy220_0.4.inst.cfg │ ├── diy220_0.5.inst.cfg │ ├── diy220_0.6.inst.cfg │ └── diy220_0.8.inst.cfg │ ├── draftshift │ ├── voron2_stealthchanger_250_v6_0.25.inst.cfg │ ├── voron2_stealthchanger_250_v6_0.30.inst.cfg │ ├── voron2_stealthchanger_250_v6_0.35.inst.cfg │ ├── voron2_stealthchanger_250_v6_0.40.inst.cfg │ ├── voron2_stealthchanger_250_v6_0.50.inst.cfg │ ├── voron2_stealthchanger_250_v6_0.60.inst.cfg │ ├── voron2_stealthchanger_250_v6_0.80.inst.cfg │ ├── voron2_stealthchanger_250_volcano_0.40.inst.cfg │ ├── voron2_stealthchanger_250_volcano_0.60.inst.cfg │ ├── voron2_stealthchanger_250_volcano_0.80.inst.cfg │ ├── voron2_stealthchanger_250_volcano_1.00.inst.cfg │ ├── voron2_stealthchanger_250_volcano_1.20.inst.cfg │ ├── voron2_stealthchanger_300_v6_0.25.inst.cfg │ ├── voron2_stealthchanger_300_v6_0.30.inst.cfg │ ├── voron2_stealthchanger_300_v6_0.35.inst.cfg │ ├── voron2_stealthchanger_300_v6_0.40.inst.cfg │ ├── voron2_stealthchanger_300_v6_0.50.inst.cfg │ ├── voron2_stealthchanger_300_v6_0.60.inst.cfg │ ├── voron2_stealthchanger_300_v6_0.80.inst.cfg │ ├── voron2_stealthchanger_300_volcano_0.40.inst.cfg │ ├── voron2_stealthchanger_300_volcano_0.60.inst.cfg │ ├── voron2_stealthchanger_300_volcano_0.80.inst.cfg │ ├── voron2_stealthchanger_300_volcano_1.00.inst.cfg │ ├── voron2_stealthchanger_300_volcano_1.20.inst.cfg │ ├── voron2_stealthchanger_350_v6_0.25.inst.cfg │ ├── voron2_stealthchanger_350_v6_0.30.inst.cfg │ ├── voron2_stealthchanger_350_v6_0.35.inst.cfg │ ├── voron2_stealthchanger_350_v6_0.40.inst.cfg │ ├── voron2_stealthchanger_350_v6_0.50.inst.cfg │ ├── voron2_stealthchanger_350_v6_0.60.inst.cfg │ ├── voron2_stealthchanger_350_v6_0.80.inst.cfg │ ├── voron2_stealthchanger_350_volcano_0.40.inst.cfg │ ├── voron2_stealthchanger_350_volcano_0.60.inst.cfg │ ├── voron2_stealthchanger_350_volcano_0.80.inst.cfg │ ├── voron2_stealthchanger_350_volcano_1.00.inst.cfg │ └── voron2_stealthchanger_350_volcano_1.20.inst.cfg │ ├── dxu │ ├── dxu_0.25.inst.cfg │ ├── dxu_0.4.inst.cfg │ ├── dxu_0.6.inst.cfg │ ├── dxu_0.8.inst.cfg │ ├── dxu_dual_0.25.inst.cfg │ ├── dxu_dual_0.4.inst.cfg │ ├── dxu_dual_0.6.inst.cfg │ ├── dxu_dual_0.8.inst.cfg │ ├── dxu_umo_0.25.inst.cfg │ ├── dxu_umo_0.4.inst.cfg │ ├── dxu_umo_0.6.inst.cfg │ ├── dxu_umo_0.8.inst.cfg │ ├── dxu_umo_dual_0.25.inst.cfg │ ├── dxu_umo_dual_0.4.inst.cfg │ ├── dxu_umo_dual_0.6.inst.cfg │ └── dxu_umo_dual_0.8.inst.cfg │ ├── elegoo │ ├── elegoo_neptune_1 │ │ ├── elegoo_neptune_1_0.20.inst.cfg │ │ ├── elegoo_neptune_1_0.40.inst.cfg │ │ ├── elegoo_neptune_1_0.60.inst.cfg │ │ └── elegoo_neptune_1_0.80.inst.cfg │ ├── elegoo_neptune_2 │ │ ├── elegoo_neptune_2_0.20.inst.cfg │ │ ├── elegoo_neptune_2_0.40.inst.cfg │ │ ├── elegoo_neptune_2_0.60.inst.cfg │ │ └── elegoo_neptune_2_0.80.inst.cfg │ ├── elegoo_neptune_2D │ │ ├── elegoo_neptune_2D_0.20.inst.cfg │ │ ├── elegoo_neptune_2D_0.40.inst.cfg │ │ ├── elegoo_neptune_2D_0.60.inst.cfg │ │ └── elegoo_neptune_2D_0.80.inst.cfg │ ├── elegoo_neptune_2s │ │ ├── elegoo_neptune_2s_0.20.inst.cfg │ │ ├── elegoo_neptune_2s_0.40.inst.cfg │ │ ├── elegoo_neptune_2s_0.60.inst.cfg │ │ └── elegoo_neptune_2s_0.80.inst.cfg │ ├── elegoo_neptune_3 │ │ ├── elegoo_neptune_3_0.20.inst.cfg │ │ ├── elegoo_neptune_3_0.40.inst.cfg │ │ ├── elegoo_neptune_3_0.60.inst.cfg │ │ └── elegoo_neptune_3_0.80.inst.cfg │ ├── elegoo_neptune_3max │ │ ├── elegoo_neptune_3max_0.20.inst.cfg │ │ ├── elegoo_neptune_3max_0.40.inst.cfg │ │ ├── elegoo_neptune_3max_0.60.inst.cfg │ │ └── elegoo_neptune_3max_0.80.inst.cfg │ ├── elegoo_neptune_3plus │ │ ├── elegoo_neptune_3plus_0.20.inst.cfg │ │ ├── elegoo_neptune_3plus_0.40.inst.cfg │ │ ├── elegoo_neptune_3plus_0.60.inst.cfg │ │ └── elegoo_neptune_3plus_0.80.inst.cfg │ ├── elegoo_neptune_3pro │ │ ├── elegoo_neptune_3pro_0.20.inst.cfg │ │ ├── elegoo_neptune_3pro_0.40.inst.cfg │ │ ├── elegoo_neptune_3pro_0.60.inst.cfg │ │ └── elegoo_neptune_3pro_0.80.inst.cfg │ ├── elegoo_neptune_4 │ │ ├── elegoo_neptune_4_0.20.inst.cfg │ │ ├── elegoo_neptune_4_0.40.inst.cfg │ │ ├── elegoo_neptune_4_0.60.inst.cfg │ │ └── elegoo_neptune_4_0.80.inst.cfg │ ├── elegoo_neptune_4max │ │ ├── elegoo_neptune_4max_0.20.inst.cfg │ │ ├── elegoo_neptune_4max_0.40.inst.cfg │ │ ├── elegoo_neptune_4max_0.60.inst.cfg │ │ └── elegoo_neptune_4max_0.80.inst.cfg │ ├── elegoo_neptune_4plus │ │ ├── elegoo_neptune_4plus_0.20.inst.cfg │ │ ├── elegoo_neptune_4plus_0.40.inst.cfg │ │ ├── elegoo_neptune_4plus_0.60.inst.cfg │ │ └── elegoo_neptune_4plus_0.80.inst.cfg │ ├── elegoo_neptune_4pro │ │ ├── elegoo_neptune_4pro_0.20.inst.cfg │ │ ├── elegoo_neptune_4pro_0.40.inst.cfg │ │ ├── elegoo_neptune_4pro_0.60.inst.cfg │ │ └── elegoo_neptune_4pro_0.80.inst.cfg │ └── elegoo_neptune_x │ │ ├── elegoo_neptune_x_0.20.inst.cfg │ │ ├── elegoo_neptune_x_0.40.inst.cfg │ │ ├── elegoo_neptune_x_0.60.inst.cfg │ │ └── elegoo_neptune_x_0.80.inst.cfg │ ├── fabtotum │ ├── fabtotum_hyb35.inst.cfg │ ├── fabtotum_lite04.inst.cfg │ ├── fabtotum_lite06.inst.cfg │ ├── fabtotum_pro02.inst.cfg │ ├── fabtotum_pro04.inst.cfg │ ├── fabtotum_pro06.inst.cfg │ └── fabtotum_pro08.inst.cfg │ ├── farm2 │ ├── farm2_ce_printhead_0.2.inst.cfg │ ├── farm2_ce_printhead_0.3.inst.cfg │ ├── farm2_ce_printhead_0.4.inst.cfg │ ├── farm2_ce_printhead_0.5.inst.cfg │ ├── farm2_printhead_0.2.inst.cfg │ ├── farm2_printhead_0.3.inst.cfg │ ├── farm2_printhead_0.4.inst.cfg │ └── farm2_printhead_0.5.inst.cfg │ ├── felix │ ├── felixpro2_0.25.inst.cfg │ ├── felixpro2_0.35.inst.cfg │ ├── felixpro2_0.50.inst.cfg │ ├── felixpro2_0.70.inst.cfg │ ├── felixtec4_0.25.inst.cfg │ ├── felixtec4_0.35.inst.cfg │ ├── felixtec4_0.50.inst.cfg │ └── felixtec4_0.70.inst.cfg │ ├── flashforge │ ├── flashforge_adventurer3_0.3.inst.cfg │ ├── flashforge_adventurer3_0.4.inst.cfg │ ├── flashforge_adventurer3_0.6.inst.cfg │ ├── flashforge_adventurer3c_0.3.inst.cfg │ ├── flashforge_adventurer3c_0.4.inst.cfg │ ├── flashforge_adventurer3c_0.6.inst.cfg │ ├── flashforge_adventurer4_0.3.inst.cfg │ ├── flashforge_adventurer4_0.4.inst.cfg │ ├── flashforge_adventurer4_0.6.inst.cfg │ ├── flashforge_adventurer4lite_0.3.inst.cfg │ ├── flashforge_adventurer4lite_0.4.inst.cfg │ ├── flashforge_adventurer4lite_0.6.inst.cfg │ ├── flashforge_base_0.20.inst.cfg │ ├── flashforge_base_0.30.inst.cfg │ ├── flashforge_base_0.40.inst.cfg │ ├── flashforge_base_0.50.inst.cfg │ ├── flashforge_base_0.60.inst.cfg │ ├── flashforge_dreamer_nx_0.20.inst.cfg │ ├── flashforge_dreamer_nx_0.30.inst.cfg │ ├── flashforge_dreamer_nx_0.40.inst.cfg │ ├── flashforge_dreamer_nx_0.50.inst.cfg │ └── flashforge_dreamer_nx_0.60.inst.cfg │ ├── flyingbear │ ├── flyingbear_base_0.25.inst.cfg │ ├── flyingbear_base_0.30.inst.cfg │ ├── flyingbear_base_0.40.inst.cfg │ ├── flyingbear_base_0.50.inst.cfg │ ├── flyingbear_base_0.60.inst.cfg │ ├── flyingbear_base_0.80.inst.cfg │ ├── flyingbear_ghost_4s_0.25.inst.cfg │ ├── flyingbear_ghost_4s_0.30.inst.cfg │ ├── flyingbear_ghost_4s_0.40.inst.cfg │ ├── flyingbear_ghost_4s_0.50.inst.cfg │ ├── flyingbear_ghost_4s_0.60.inst.cfg │ ├── flyingbear_ghost_4s_0.80.inst.cfg │ ├── flyingbear_ghost_5_0.25.inst.cfg │ ├── flyingbear_ghost_5_0.30.inst.cfg │ ├── flyingbear_ghost_5_0.40.inst.cfg │ ├── flyingbear_ghost_5_0.50.inst.cfg │ ├── flyingbear_ghost_5_0.60.inst.cfg │ ├── flyingbear_ghost_5_0.80.inst.cfg │ ├── flyingbear_ghost_6_0.25.inst.cfg │ ├── flyingbear_ghost_6_0.30.inst.cfg │ ├── flyingbear_ghost_6_0.40.inst.cfg │ ├── flyingbear_ghost_6_0.50.inst.cfg │ ├── flyingbear_ghost_6_0.60.inst.cfg │ └── flyingbear_ghost_6_0.80.inst.cfg │ ├── fusion3 │ ├── fusion3_0.4.inst.cfg │ ├── fusion3_0.6.inst.cfg │ ├── fusion3_0.8.inst.cfg │ ├── fusion3_f410_0.4.inst.cfg │ ├── fusion3_f410_0.6.inst.cfg │ └── fusion3_f410_0.8.inst.cfg │ ├── geeetech_variants │ ├── geeetech_A10Pro_0.2.inst.cfg │ ├── geeetech_A10Pro_0.3.inst.cfg │ ├── geeetech_A10Pro_0.4.inst.cfg │ ├── geeetech_A10Pro_0.5.inst.cfg │ ├── geeetech_A10Pro_0.6.inst.cfg │ ├── geeetech_A10Pro_0.8.inst.cfg │ ├── geeetech_A10Pro_1.0.inst.cfg │ ├── geeetech_A20_0.2.inst.cfg │ ├── geeetech_A20_0.3.inst.cfg │ ├── geeetech_A20_0.4.inst.cfg │ ├── geeetech_A20_0.5.inst.cfg │ ├── geeetech_A20_0.6.inst.cfg │ ├── geeetech_A20_0.8.inst.cfg │ ├── geeetech_A20_1.0.inst.cfg │ ├── geeetech_A30Pro_0.2.inst.cfg │ ├── geeetech_A30Pro_0.3.inst.cfg │ ├── geeetech_A30Pro_0.4.inst.cfg │ ├── geeetech_A30Pro_0.5.inst.cfg │ ├── geeetech_A30Pro_0.6.inst.cfg │ ├── geeetech_A30Pro_0.8.inst.cfg │ ├── geeetech_A30Pro_1.0.inst.cfg │ ├── geeetech_E180_0.2.inst.cfg │ ├── geeetech_E180_0.3.inst.cfg │ ├── geeetech_E180_0.4.inst.cfg │ ├── geeetech_E180_0.5.inst.cfg │ ├── geeetech_E180_0.6.inst.cfg │ ├── geeetech_E180_0.8.inst.cfg │ ├── geeetech_E180_1.0.inst.cfg │ ├── geeetech_GiantArmD200_0.2.inst.cfg │ ├── geeetech_GiantArmD200_0.3.inst.cfg │ ├── geeetech_GiantArmD200_0.4.inst.cfg │ ├── geeetech_GiantArmD200_0.5.inst.cfg │ ├── geeetech_GiantArmD200_0.6.inst.cfg │ ├── geeetech_GiantArmD200_0.8.inst.cfg │ ├── geeetech_GiantArmD200_1.0.inst.cfg │ ├── geeetech_I3ProB_0.2.inst.cfg │ ├── geeetech_I3ProB_0.3.inst.cfg │ ├── geeetech_I3ProB_0.4.inst.cfg │ ├── geeetech_I3ProB_0.5.inst.cfg │ ├── geeetech_I3ProB_0.6.inst.cfg │ ├── geeetech_I3ProB_0.8.inst.cfg │ ├── geeetech_I3ProB_1.0.inst.cfg │ ├── geeetech_I3ProW_0.2.inst.cfg │ ├── geeetech_I3ProW_0.3.inst.cfg │ ├── geeetech_I3ProW_0.4.inst.cfg │ ├── geeetech_I3ProW_0.5.inst.cfg │ ├── geeetech_I3ProW_0.6.inst.cfg │ ├── geeetech_I3ProW_0.8.inst.cfg │ ├── geeetech_I3ProW_1.0.inst.cfg │ ├── geeetech_M1S_0.2.inst.cfg │ ├── geeetech_M1S_0.3.inst.cfg │ ├── geeetech_M1S_0.4.inst.cfg │ ├── geeetech_M1S_0.5.inst.cfg │ ├── geeetech_M1S_0.6.inst.cfg │ ├── geeetech_M1S_0.8.inst.cfg │ ├── geeetech_M1S_1.0.inst.cfg │ ├── geeetech_M1_0.2.inst.cfg │ ├── geeetech_M1_0.3.inst.cfg │ ├── geeetech_M1_0.4.inst.cfg │ ├── geeetech_M1_0.5.inst.cfg │ ├── geeetech_M1_0.6.inst.cfg │ ├── geeetech_M1_0.8.inst.cfg │ ├── geeetech_M1_1.0.inst.cfg │ ├── geeetech_MeCreator2_0.2.inst.cfg │ ├── geeetech_MeCreator2_0.3.inst.cfg │ ├── geeetech_MeCreator2_0.4.inst.cfg │ ├── geeetech_MeCreator2_0.5.inst.cfg │ ├── geeetech_MeCreator2_0.6.inst.cfg │ ├── geeetech_MeCreator2_0.8.inst.cfg │ ├── geeetech_MeCreator2_1.0.inst.cfg │ ├── geeetech_MeCreator_0.2.inst.cfg │ ├── geeetech_MeCreator_0.3.inst.cfg │ ├── geeetech_MeCreator_0.4.inst.cfg │ ├── geeetech_MeCreator_0.5.inst.cfg │ ├── geeetech_MeCreator_0.6.inst.cfg │ ├── geeetech_MeCreator_0.8.inst.cfg │ ├── geeetech_MeCreator_1.0.inst.cfg │ ├── geeetech_MeDucer_0.2.inst.cfg │ ├── geeetech_MeDucer_0.3.inst.cfg │ ├── geeetech_MeDucer_0.4.inst.cfg │ ├── geeetech_MeDucer_0.5.inst.cfg │ ├── geeetech_MeDucer_0.6.inst.cfg │ ├── geeetech_MeDucer_0.8.inst.cfg │ ├── geeetech_MeDucer_1.0.inst.cfg │ ├── geeetech_MizarMax_0.2.inst.cfg │ ├── geeetech_MizarMax_0.3.inst.cfg │ ├── geeetech_MizarMax_0.4.inst.cfg │ ├── geeetech_MizarMax_0.5.inst.cfg │ ├── geeetech_MizarMax_0.6.inst.cfg │ ├── geeetech_MizarMax_0.8.inst.cfg │ ├── geeetech_MizarMax_1.0.inst.cfg │ ├── geeetech_MizarPro_0.2.inst.cfg │ ├── geeetech_MizarPro_0.3.inst.cfg │ ├── geeetech_MizarPro_0.4.inst.cfg │ ├── geeetech_MizarPro_0.5.inst.cfg │ ├── geeetech_MizarPro_0.6.inst.cfg │ ├── geeetech_MizarPro_0.8.inst.cfg │ ├── geeetech_MizarPro_1.0.inst.cfg │ ├── geeetech_MizarS_0.2.inst.cfg │ ├── geeetech_MizarS_0.3.inst.cfg │ ├── geeetech_MizarS_0.4.inst.cfg │ ├── geeetech_MizarS_0.5.inst.cfg │ ├── geeetech_MizarS_0.6.inst.cfg │ ├── geeetech_MizarS_0.8.inst.cfg │ ├── geeetech_MizarS_1.0.inst.cfg │ ├── geeetech_Mizar_0.2.inst.cfg │ ├── geeetech_Mizar_0.3.inst.cfg │ ├── geeetech_Mizar_0.4.inst.cfg │ ├── geeetech_Mizar_0.5.inst.cfg │ ├── geeetech_Mizar_0.6.inst.cfg │ ├── geeetech_Mizar_0.8.inst.cfg │ ├── geeetech_Mizar_1.0.inst.cfg │ ├── geeetech_Thunder_0.2.inst.cfg │ ├── geeetech_Thunder_0.3.inst.cfg │ ├── geeetech_Thunder_0.4.inst.cfg │ ├── geeetech_Thunder_0.5.inst.cfg │ ├── geeetech_Thunder_0.6.inst.cfg │ ├── geeetech_Thunder_0.8.inst.cfg │ └── geeetech_Thunder_1.0.inst.cfg │ ├── gmax │ ├── gmax15plus_025_e3d.inst.cfg │ ├── gmax15plus_04_e3d.inst.cfg │ ├── gmax15plus_05_e3d.inst.cfg │ ├── gmax15plus_05_jhead.inst.cfg │ ├── gmax15plus_06_e3d.inst.cfg │ ├── gmax15plus_08_e3d.inst.cfg │ ├── gmax15plus_10_jhead.inst.cfg │ ├── gmax15plus_12_e3d.inst.cfg │ ├── gmax15plus_dual_025_e3d.inst.cfg │ ├── gmax15plus_dual_04_e3d.inst.cfg │ ├── gmax15plus_dual_05_e3d.inst.cfg │ ├── gmax15plus_dual_05_jhead.inst.cfg │ ├── gmax15plus_dual_06_e3d.inst.cfg │ ├── gmax15plus_dual_08_e3d.inst.cfg │ └── gmax15plus_dual_10_jhead.inst.cfg │ ├── goofoo │ ├── goofoo_base_0.4.inst.cfg │ ├── goofoo_cube_0.7.inst.cfg │ ├── goofoo_e-one_0.2.inst.cfg │ ├── goofoo_e-one_0.4.inst.cfg │ ├── goofoo_e-one_0.6.inst.cfg │ ├── goofoo_e-one_0.8.inst.cfg │ ├── goofoo_e-one_1.0.inst.cfg │ ├── goofoo_gemini_0.2.inst.cfg │ ├── goofoo_gemini_0.4.inst.cfg │ ├── goofoo_gemini_0.6.inst.cfg │ ├── goofoo_gemini_0.8.inst.cfg │ ├── goofoo_gemini_1.0.inst.cfg │ ├── goofoo_giant_0.2.inst.cfg │ ├── goofoo_giant_0.4.inst.cfg │ ├── goofoo_giant_0.6.inst.cfg │ ├── goofoo_giant_0.8.inst.cfg │ ├── goofoo_giant_1.0.inst.cfg │ ├── goofoo_max_0.2.inst.cfg │ ├── goofoo_max_0.4.inst.cfg │ ├── goofoo_max_0.6.inst.cfg │ ├── goofoo_max_0.8.inst.cfg │ ├── goofoo_max_1.0.inst.cfg │ ├── goofoo_mido_0.2.inst.cfg │ ├── goofoo_mido_0.4.inst.cfg │ ├── goofoo_mido_0.6.inst.cfg │ ├── goofoo_mido_0.8.inst.cfg │ ├── goofoo_mido_1.0.inst.cfg │ ├── goofoo_miniplus_0.2.inst.cfg │ ├── goofoo_miniplus_0.4.inst.cfg │ ├── goofoo_miniplus_0.6.inst.cfg │ ├── goofoo_miniplus_0.8.inst.cfg │ ├── goofoo_miniplus_1.0.inst.cfg │ ├── goofoo_nova_0.2.inst.cfg │ ├── goofoo_nova_0.4.inst.cfg │ ├── goofoo_nova_0.6.inst.cfg │ ├── goofoo_nova_0.8.inst.cfg │ ├── goofoo_nova_1.0.inst.cfg │ ├── goofoo_plus_0.2.inst.cfg │ ├── goofoo_plus_0.4.inst.cfg │ ├── goofoo_plus_0.6.inst.cfg │ ├── goofoo_plus_0.8.inst.cfg │ ├── goofoo_plus_1.0.inst.cfg │ ├── goofoo_t-one_0.2.inst.cfg │ ├── goofoo_t-one_0.4.inst.cfg │ ├── goofoo_t-one_0.6.inst.cfg │ ├── goofoo_t-one_0.8.inst.cfg │ ├── goofoo_t-one_1.0.inst.cfg │ ├── goofoo_tiny_0.2.inst.cfg │ ├── goofoo_tiny_0.4.inst.cfg │ ├── goofoo_tiny_0.6.inst.cfg │ ├── goofoo_tiny_0.8.inst.cfg │ ├── goofoo_tiny_1.0.inst.cfg │ ├── goofoo_tinyplus_0.2.inst.cfg │ ├── goofoo_tinyplus_0.4.inst.cfg │ ├── goofoo_tinyplus_0.6.inst.cfg │ ├── goofoo_tinyplus_0.8.inst.cfg │ └── goofoo_tinyplus_1.0.inst.cfg │ ├── hms434 │ ├── hms434_0.4tpnozzle.inst.cfg │ └── hms434_0.8tpnozzle.inst.cfg │ ├── imade3d │ ├── imade3d_jellybox_0.4.inst.cfg │ └── imade3d_jellybox_2_0.4.inst.cfg │ ├── kingroon │ ├── kingroon_kp3_0.2.inst.cfg │ ├── kingroon_kp3_0.3.inst.cfg │ ├── kingroon_kp3_0.4.inst.cfg │ ├── kingroon_kp3_0.5.inst.cfg │ ├── kingroon_kp3_0.6.inst.cfg │ ├── kingroon_kp3_0.8.inst.cfg │ ├── kingroon_kp3_1.0.inst.cfg │ ├── kingroon_kp3s_0.2.inst.cfg │ ├── kingroon_kp3s_0.3.inst.cfg │ ├── kingroon_kp3s_0.4.inst.cfg │ ├── kingroon_kp3s_0.5.inst.cfg │ ├── kingroon_kp3s_0.6.inst.cfg │ ├── kingroon_kp3s_0.8.inst.cfg │ ├── kingroon_kp3s_1.0.inst.cfg │ ├── kingroon_kp3s_pro_0.2.inst.cfg │ ├── kingroon_kp3s_pro_0.3.inst.cfg │ ├── kingroon_kp3s_pro_0.4.inst.cfg │ ├── kingroon_kp3s_pro_0.5.inst.cfg │ ├── kingroon_kp3s_pro_0.6.inst.cfg │ ├── kingroon_kp3s_pro_0.8.inst.cfg │ └── kingroon_kp3s_pro_1.0.inst.cfg │ ├── kosher │ ├── kosher220_0.2.inst.cfg │ ├── kosher220_0.3.inst.cfg │ ├── kosher220_0.4.inst.cfg │ ├── kosher220_0.5.inst.cfg │ ├── kosher220_0.6.inst.cfg │ ├── kosher220_0.8.inst.cfg │ ├── kosher220_dm_0.2.inst.cfg │ ├── kosher220_dm_0.3.inst.cfg │ ├── kosher220_dm_0.4.inst.cfg │ ├── kosher220_dm_0.5.inst.cfg │ ├── kosher220_dm_0.6.inst.cfg │ ├── kosher220_dm_0.8.inst.cfg │ ├── kosher220_mm_0.2.inst.cfg │ ├── kosher220_mm_0.3.inst.cfg │ ├── kosher220_mm_0.4.inst.cfg │ ├── kosher220_mm_0.5.inst.cfg │ ├── kosher220_mm_0.6.inst.cfg │ ├── kosher220_mm_0.8.inst.cfg │ ├── kosher220_pva_0.2.inst.cfg │ ├── kosher220_pva_0.3.inst.cfg │ ├── kosher220_pva_0.4.inst.cfg │ ├── kosher220_pva_0.5.inst.cfg │ ├── kosher220_pva_0.6.inst.cfg │ └── kosher220_pva_0.8.inst.cfg │ ├── leapfrog │ ├── Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg │ └── Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg │ ├── liquid │ ├── liquid_vo04.inst.cfg │ ├── liquid_vo06.inst.cfg │ └── liquid_vo08.inst.cfg │ ├── lnl3d │ ├── lnl3d_d3_0.2.inst.cfg │ ├── lnl3d_d3_0.4.inst.cfg │ ├── lnl3d_d3_0.6.inst.cfg │ ├── lnl3d_d3_0.8.inst.cfg │ ├── lnl3d_d3_vulcan_0.2.inst.cfg │ ├── lnl3d_d3_vulcan_0.4.inst.cfg │ ├── lnl3d_d3_vulcan_0.6.inst.cfg │ ├── lnl3d_d3_vulcan_0.8.inst.cfg │ ├── lnl3d_d5_0.2.inst.cfg │ ├── lnl3d_d5_0.4.inst.cfg │ ├── lnl3d_d5_0.6.inst.cfg │ ├── lnl3d_d5_0.8.inst.cfg │ ├── lnl3d_d6_0.2.inst.cfg │ ├── lnl3d_d6_0.4.inst.cfg │ ├── lnl3d_d6_0.6.inst.cfg │ └── lnl3d_d6_0.8.inst.cfg │ ├── longer │ ├── longer_base_0.4.inst.cfg │ ├── longer_cube2_0.4.inst.cfg │ ├── longer_lk1_0.4.inst.cfg │ ├── longer_lk1plus_0.4.inst.cfg │ ├── longer_lk1pro_0.4.inst.cfg │ ├── longer_lk4_0.4.inst.cfg │ ├── longer_lk4pro_0.4.inst.cfg │ ├── longer_lk4x_0.4.inst.cfg │ ├── longer_lk5_0.4.inst.cfg │ └── longer_lk5pro_0.4.inst.cfg │ ├── mark2 │ ├── Mark2_for_Ultimaker2_0.25.inst.cfg │ ├── Mark2_for_Ultimaker2_0.4.inst.cfg │ ├── Mark2_for_Ultimaker2_0.6.inst.cfg │ └── Mark2_for_Ultimaker2_0.8.inst.cfg │ ├── mingda │ ├── mingda_1000pro_0.2.inst.cfg │ ├── mingda_1000pro_0.3.inst.cfg │ ├── mingda_1000pro_0.4.inst.cfg │ ├── mingda_1000pro_0.5.inst.cfg │ ├── mingda_1000pro_0.6.inst.cfg │ ├── mingda_1000pro_0.8.inst.cfg │ ├── mingda_1000pro_1.0.inst.cfg │ ├── mingda_4h_0.2.inst.cfg │ ├── mingda_4h_0.3.inst.cfg │ ├── mingda_4h_0.4.inst.cfg │ ├── mingda_4h_0.5.inst.cfg │ ├── mingda_4h_0.6.inst.cfg │ ├── mingda_4h_0.8.inst.cfg │ ├── mingda_4h_1.0.inst.cfg │ ├── mingda_600pro_0.2.inst.cfg │ ├── mingda_600pro_0.3.inst.cfg │ ├── mingda_600pro_0.4.inst.cfg │ ├── mingda_600pro_0.5.inst.cfg │ ├── mingda_600pro_0.6.inst.cfg │ ├── mingda_600pro_0.8.inst.cfg │ ├── mingda_600pro_1.0.inst.cfg │ ├── mingda_6h_0.2.inst.cfg │ ├── mingda_6h_0.3.inst.cfg │ ├── mingda_6h_0.4.inst.cfg │ ├── mingda_6h_0.5.inst.cfg │ ├── mingda_6h_0.6.inst.cfg │ ├── mingda_6h_0.8.inst.cfg │ ├── mingda_6h_1.0.inst.cfg │ ├── mingda_base_0.2.inst.cfg │ ├── mingda_base_0.3.inst.cfg │ ├── mingda_base_0.4.inst.cfg │ ├── mingda_base_0.6.inst.cfg │ ├── mingda_base_0.8.inst.cfg │ ├── mingda_base_1.0.inst.cfg │ ├── mingda_d2_0.2.inst.cfg │ ├── mingda_d2_0.3.inst.cfg │ ├── mingda_d2_0.4.inst.cfg │ ├── mingda_d2_0.5.inst.cfg │ ├── mingda_d2_0.6.inst.cfg │ ├── mingda_d2_0.8.inst.cfg │ ├── mingda_d2_1.0.inst.cfg │ ├── mingda_d3pro_0.2.inst.cfg │ ├── mingda_d3pro_0.3.inst.cfg │ ├── mingda_d3pro_0.4.inst.cfg │ ├── mingda_d3pro_0.5.inst.cfg │ ├── mingda_d3pro_0.6.inst.cfg │ ├── mingda_d3pro_0.8.inst.cfg │ ├── mingda_d3pro_1.0.inst.cfg │ ├── mingda_d4pro_0.2.inst.cfg │ ├── mingda_d4pro_0.3.inst.cfg │ ├── mingda_d4pro_0.4.inst.cfg │ ├── mingda_d4pro_0.5.inst.cfg │ ├── mingda_d4pro_0.6.inst.cfg │ ├── mingda_d4pro_0.8.inst.cfg │ ├── mingda_d4pro_1.0.inst.cfg │ ├── mingda_magician_max_0.2.inst.cfg │ ├── mingda_magician_max_0.3.inst.cfg │ ├── mingda_magician_max_0.4.inst.cfg │ ├── mingda_magician_max_0.5.inst.cfg │ ├── mingda_magician_max_0.6.inst.cfg │ ├── mingda_magician_max_0.8.inst.cfg │ ├── mingda_magician_max_1.0.inst.cfg │ ├── mingda_magician_pro_0.2.inst.cfg │ ├── mingda_magician_pro_0.3.inst.cfg │ ├── mingda_magician_pro_0.4.inst.cfg │ ├── mingda_magician_pro_0.5.inst.cfg │ ├── mingda_magician_pro_0.6.inst.cfg │ ├── mingda_magician_pro_0.8.inst.cfg │ ├── mingda_magician_pro_1.0.inst.cfg │ ├── mingda_magician_x_0.2.inst.cfg │ ├── mingda_magician_x_0.3.inst.cfg │ ├── mingda_magician_x_0.4.inst.cfg │ ├── mingda_magician_x_0.5.inst.cfg │ ├── mingda_magician_x_0.6.inst.cfg │ ├── mingda_magician_x_0.8.inst.cfg │ ├── mingda_magician_x_1.0.inst.cfg │ ├── mingda_rock3_0.2.inst.cfg │ ├── mingda_rock3_0.3.inst.cfg │ ├── mingda_rock3_0.4.inst.cfg │ ├── mingda_rock3_0.5.inst.cfg │ ├── mingda_rock3_0.6.inst.cfg │ ├── mingda_rock3_0.8.inst.cfg │ └── mingda_rock3_1.0.inst.cfg │ ├── modix │ ├── modix_v3_base_0.4.inst.cfg │ ├── modix_v3_base_0.6.inst.cfg │ ├── modix_v3_base_0.8.inst.cfg │ ├── modix_v3_base_1.0.inst.cfg │ ├── modix_v3_base_1.2.inst.cfg │ ├── modix_v3_base_1.4.inst.cfg │ ├── modix_v3_big120X_0.4.inst.cfg │ ├── modix_v3_big120X_0.6.inst.cfg │ ├── modix_v3_big120X_0.8.inst.cfg │ ├── modix_v3_big120X_1.0.inst.cfg │ ├── modix_v3_big120X_1.2.inst.cfg │ ├── modix_v3_big120X_1.4.inst.cfg │ ├── modix_v3_big120Z_0.4.inst.cfg │ ├── modix_v3_big120Z_0.6.inst.cfg │ ├── modix_v3_big120Z_0.8.inst.cfg │ ├── modix_v3_big120Z_1.0.inst.cfg │ ├── modix_v3_big120Z_1.2.inst.cfg │ ├── modix_v3_big120Z_1.4.inst.cfg │ ├── modix_v3_big180X_0.4.inst.cfg │ ├── modix_v3_big180X_0.6.inst.cfg │ ├── modix_v3_big180X_0.8.inst.cfg │ ├── modix_v3_big180X_1.0.inst.cfg │ ├── modix_v3_big180X_1.2.inst.cfg │ ├── modix_v3_big180X_1.4.inst.cfg │ ├── modix_v3_big40_0.4.inst.cfg │ ├── modix_v3_big40_0.6.inst.cfg │ ├── modix_v3_big40_0.8.inst.cfg │ ├── modix_v3_big40_1.0.inst.cfg │ ├── modix_v3_big40_1.2.inst.cfg │ ├── modix_v3_big40_1.4.inst.cfg │ ├── modix_v3_big60_0.4.inst.cfg │ ├── modix_v3_big60_0.6.inst.cfg │ ├── modix_v3_big60_0.8.inst.cfg │ ├── modix_v3_big60_1.0.inst.cfg │ ├── modix_v3_big60_1.2.inst.cfg │ ├── modix_v3_big60_1.4.inst.cfg │ ├── modix_v3_bigmeter_0.4.inst.cfg │ ├── modix_v3_bigmeter_0.6.inst.cfg │ ├── modix_v3_bigmeter_0.8.inst.cfg │ ├── modix_v3_bigmeter_1.0.inst.cfg │ ├── modix_v3_bigmeter_1.2.inst.cfg │ ├── modix_v3_bigmeter_1.4.inst.cfg │ ├── modix_v4_base_0.4.inst.cfg │ ├── modix_v4_base_0.6.inst.cfg │ ├── modix_v4_base_0.8.inst.cfg │ ├── modix_v4_base_1.0.inst.cfg │ ├── modix_v4_base_1.2.inst.cfg │ ├── modix_v4_base_1.4.inst.cfg │ ├── modix_v4_big120X_0.4.inst.cfg │ ├── modix_v4_big120X_0.6.inst.cfg │ ├── modix_v4_big120X_0.8.inst.cfg │ ├── modix_v4_big120X_1.0.inst.cfg │ ├── modix_v4_big120X_1.2.inst.cfg │ ├── modix_v4_big120X_1.4.inst.cfg │ ├── modix_v4_big120Z_0.4.inst.cfg │ ├── modix_v4_big120Z_0.6.inst.cfg │ ├── modix_v4_big120Z_0.8.inst.cfg │ ├── modix_v4_big120Z_1.0.inst.cfg │ ├── modix_v4_big120Z_1.2.inst.cfg │ ├── modix_v4_big120Z_1.4.inst.cfg │ ├── modix_v4_big180X_0.4.inst.cfg │ ├── modix_v4_big180X_0.6.inst.cfg │ ├── modix_v4_big180X_0.8.inst.cfg │ ├── modix_v4_big180X_1.0.inst.cfg │ ├── modix_v4_big180X_1.2.inst.cfg │ ├── modix_v4_big180X_1.4.inst.cfg │ ├── modix_v4_big60_0.4.inst.cfg │ ├── modix_v4_big60_0.6.inst.cfg │ ├── modix_v4_big60_0.8.inst.cfg │ ├── modix_v4_big60_1.0.inst.cfg │ ├── modix_v4_big60_1.2.inst.cfg │ ├── modix_v4_big60_1.4.inst.cfg │ ├── modix_v4_bigmeter_0.4.inst.cfg │ ├── modix_v4_bigmeter_0.6.inst.cfg │ ├── modix_v4_bigmeter_0.8.inst.cfg │ ├── modix_v4_bigmeter_1.0.inst.cfg │ ├── modix_v4_bigmeter_1.2.inst.cfg │ └── modix_v4_bigmeter_1.4.inst.cfg │ ├── multicomp │ ├── multicomp_mcpi200_0.2.inst.cfg │ ├── multicomp_mcpi200_0.4.inst.cfg │ ├── multicomp_mcpi200_0.6.inst.cfg │ ├── multicomp_mcpi200_0.8.inst.cfg │ └── multicomp_mcpi200_1.0.inst.cfg │ ├── nwa3d │ ├── nwa3d_a31_04.inst.cfg │ └── nwa3d_a31_06.inst.cfg │ ├── ratrig │ ├── ratrig_base_0.2.inst.cfg │ ├── ratrig_base_0.3.inst.cfg │ ├── ratrig_base_0.4.inst.cfg │ ├── ratrig_base_0.6.inst.cfg │ ├── ratrig_base_0.8.inst.cfg │ ├── ratrig_base_1.0.inst.cfg │ ├── ratrig_vcore3_200_0.2.inst.cfg │ ├── ratrig_vcore3_200_0.3.inst.cfg │ ├── ratrig_vcore3_200_0.4.inst.cfg │ ├── ratrig_vcore3_200_0.6.inst.cfg │ ├── ratrig_vcore3_200_0.8.inst.cfg │ ├── ratrig_vcore3_200_1.0.inst.cfg │ ├── ratrig_vcore3_300_0.2.inst.cfg │ ├── ratrig_vcore3_300_0.3.inst.cfg │ ├── ratrig_vcore3_300_0.4.inst.cfg │ ├── ratrig_vcore3_300_0.6.inst.cfg │ ├── ratrig_vcore3_300_0.8.inst.cfg │ ├── ratrig_vcore3_300_1.0.inst.cfg │ ├── ratrig_vcore3_400_0.2.inst.cfg │ ├── ratrig_vcore3_400_0.3.inst.cfg │ ├── ratrig_vcore3_400_0.4.inst.cfg │ ├── ratrig_vcore3_400_0.6.inst.cfg │ ├── ratrig_vcore3_400_0.8.inst.cfg │ ├── ratrig_vcore3_400_1.0.inst.cfg │ ├── ratrig_vcore3_500_0.2.inst.cfg │ ├── ratrig_vcore3_500_0.3.inst.cfg │ ├── ratrig_vcore3_500_0.4.inst.cfg │ ├── ratrig_vcore3_500_0.6.inst.cfg │ ├── ratrig_vcore3_500_0.8.inst.cfg │ ├── ratrig_vcore3_500_1.0.inst.cfg │ ├── ratrig_vminion_0.2.inst.cfg │ ├── ratrig_vminion_0.3.inst.cfg │ ├── ratrig_vminion_0.4.inst.cfg │ ├── ratrig_vminion_0.6.inst.cfg │ ├── ratrig_vminion_0.8.inst.cfg │ └── ratrig_vminion_1.0.inst.cfg │ ├── renkforce │ ├── renkforce_basic3_0.2.inst.cfg │ ├── renkforce_basic3_0.4.inst.cfg │ ├── renkforce_basic3_0.6.inst.cfg │ ├── renkforce_basic3_0.8.inst.cfg │ ├── renkforce_basic3_1.0.inst.cfg │ ├── renkforce_cubeone_0.7.inst.cfg │ ├── renkforce_pro10plus_0.2.inst.cfg │ ├── renkforce_pro10plus_0.4.inst.cfg │ ├── renkforce_pro10plus_0.6.inst.cfg │ ├── renkforce_pro10plus_0.8.inst.cfg │ ├── renkforce_pro10plus_1.0.inst.cfg │ ├── renkforce_pro3_0.2.inst.cfg │ ├── renkforce_pro3_0.4.inst.cfg │ ├── renkforce_pro3_0.6.inst.cfg │ ├── renkforce_pro3_0.8.inst.cfg │ ├── renkforce_pro3_1.0.inst.cfg │ ├── renkforce_pro6_0.2.inst.cfg │ ├── renkforce_pro6_0.4.inst.cfg │ ├── renkforce_pro6_0.6.inst.cfg │ ├── renkforce_pro6_0.8.inst.cfg │ ├── renkforce_pro6_1.0.inst.cfg │ ├── renkforce_pro6plus_0.4.inst.cfg │ ├── renkforce_pro6plus_0.6.inst.cfg │ ├── renkforce_pro6plus_0.8.inst.cfg │ ├── renkforce_pro6plus_1.0.inst.cfg │ ├── renkforce_pro7dual_0.2.inst.cfg │ ├── renkforce_pro7dual_0.4.inst.cfg │ ├── renkforce_pro7dual_0.6.inst.cfg │ ├── renkforce_pro7dual_0.8.inst.cfg │ └── renkforce_pro7dual_1.0.inst.cfg │ ├── sovol │ ├── sovol_base_bowden_0.2.inst.cfg │ ├── sovol_base_bowden_0.3.inst.cfg │ ├── sovol_base_bowden_0.4.inst.cfg │ ├── sovol_base_bowden_0.5.inst.cfg │ ├── sovol_base_bowden_0.6.inst.cfg │ ├── sovol_base_bowden_0.8.inst.cfg │ ├── sovol_base_bowden_1.0.inst.cfg │ ├── sovol_base_planetary_0.2.inst.cfg │ ├── sovol_base_planetary_0.3.inst.cfg │ ├── sovol_base_planetary_0.4.inst.cfg │ ├── sovol_base_planetary_0.5.inst.cfg │ ├── sovol_base_planetary_0.6.inst.cfg │ ├── sovol_base_planetary_0.8.inst.cfg │ ├── sovol_base_planetary_1.0.inst.cfg │ ├── sovol_base_titan_0.2.inst.cfg │ ├── sovol_base_titan_0.3.inst.cfg │ ├── sovol_base_titan_0.4.inst.cfg │ ├── sovol_base_titan_0.5.inst.cfg │ ├── sovol_base_titan_0.6.inst.cfg │ ├── sovol_base_titan_0.8.inst.cfg │ ├── sovol_base_titan_1.0.inst.cfg │ ├── sovol_sv01_0.2.inst.cfg │ ├── sovol_sv01_0.3.inst.cfg │ ├── sovol_sv01_0.4.inst.cfg │ ├── sovol_sv01_0.5.inst.cfg │ ├── sovol_sv01_0.6.inst.cfg │ ├── sovol_sv01_0.8.inst.cfg │ ├── sovol_sv01_1.0.inst.cfg │ ├── sovol_sv01pro_0.2.inst.cfg │ ├── sovol_sv01pro_0.3.inst.cfg │ ├── sovol_sv01pro_0.4.inst.cfg │ ├── sovol_sv01pro_0.5.inst.cfg │ ├── sovol_sv01pro_0.6.inst.cfg │ ├── sovol_sv01pro_0.8.inst.cfg │ ├── sovol_sv01pro_1.0.inst.cfg │ ├── sovol_sv03_0.2.inst.cfg │ ├── sovol_sv03_0.3.inst.cfg │ ├── sovol_sv03_0.4.inst.cfg │ ├── sovol_sv03_0.5.inst.cfg │ ├── sovol_sv03_0.6.inst.cfg │ ├── sovol_sv03_0.8.inst.cfg │ ├── sovol_sv03_1.0.inst.cfg │ ├── sovol_sv05_0.2.inst.cfg │ ├── sovol_sv05_0.3.inst.cfg │ ├── sovol_sv05_0.4.inst.cfg │ ├── sovol_sv05_0.5.inst.cfg │ ├── sovol_sv05_0.6.inst.cfg │ ├── sovol_sv05_0.8.inst.cfg │ ├── sovol_sv05_1.0.inst.cfg │ ├── sovol_sv06_0.2.inst.cfg │ ├── sovol_sv06_0.3.inst.cfg │ ├── sovol_sv06_0.4.inst.cfg │ ├── sovol_sv06_0.5.inst.cfg │ ├── sovol_sv06_0.6.inst.cfg │ ├── sovol_sv06_0.8.inst.cfg │ ├── sovol_sv06_1.0.inst.cfg │ ├── sovol_sv06_plus_0.2.inst.cfg │ ├── sovol_sv06_plus_0.3.inst.cfg │ ├── sovol_sv06_plus_0.4.inst.cfg │ ├── sovol_sv06_plus_0.5.inst.cfg │ ├── sovol_sv06_plus_0.6.inst.cfg │ ├── sovol_sv06_plus_0.8.inst.cfg │ ├── sovol_sv06_plus_1.0.inst.cfg │ └── sovol_sv08_0.4.inst.cfg │ ├── strateo3d │ ├── strateo3d_IDEX420_brass_04.inst.cfg │ ├── strateo3d_IDEX420_brass_06.inst.cfg │ ├── strateo3d_IDEX420_brass_08.inst.cfg │ ├── strateo3d_IDEX420_duplicate_brass_04.inst.cfg │ ├── strateo3d_IDEX420_duplicate_brass_06.inst.cfg │ ├── strateo3d_IDEX420_duplicate_brass_08.inst.cfg │ ├── strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg │ ├── strateo3d_IDEX420_hardened_steel_04.inst.cfg │ ├── strateo3d_IDEX420_mirror_brass_04.inst.cfg │ ├── strateo3d_IDEX420_mirror_brass_06.inst.cfg │ ├── strateo3d_IDEX420_mirror_brass_08.inst.cfg │ ├── strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg │ ├── strateo3d_high_temp_04.inst.cfg │ ├── strateo3d_standard_04.inst.cfg │ ├── strateo3d_standard_06.inst.cfg │ ├── strateo3d_standard_08.inst.cfg │ ├── strateo3d_standard_10.inst.cfg │ └── strateo3d_standard_12.inst.cfg │ ├── structur3d │ ├── structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg │ ├── structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg │ ├── structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg │ ├── structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg │ ├── structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg │ ├── structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg │ └── structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg │ ├── tizyx │ ├── tizyx_evy_0.2.inst.cfg │ ├── tizyx_evy_0.3.inst.cfg │ ├── tizyx_evy_0.4.inst.cfg │ ├── tizyx_evy_0.5.inst.cfg │ ├── tizyx_evy_0.6.inst.cfg │ ├── tizyx_evy_0.8.inst.cfg │ ├── tizyx_evy_1.0.inst.cfg │ ├── tizyx_evy_dual_classic.inst.cfg │ ├── tizyx_evy_dual_direct_drive.inst.cfg │ ├── tizyx_k25_0.2.inst.cfg │ ├── tizyx_k25_0.3.inst.cfg │ ├── tizyx_k25_0.4.inst.cfg │ ├── tizyx_k25_0.5.inst.cfg │ ├── tizyx_k25_0.6.inst.cfg │ ├── tizyx_k25_0.8.inst.cfg │ └── tizyx_k25_1.0.inst.cfg │ ├── tronxy │ ├── tronxy_d01_0.2.inst.cfg │ ├── tronxy_d01_0.3.inst.cfg │ ├── tronxy_d01_0.4.inst.cfg │ ├── tronxy_d01_0.5.inst.cfg │ ├── tronxy_d01_0.6.inst.cfg │ ├── tronxy_d01_0.8.inst.cfg │ ├── tronxy_x5sa_0.2.inst.cfg │ ├── tronxy_x5sa_0.3.inst.cfg │ ├── tronxy_x5sa_0.4.inst.cfg │ ├── tronxy_x5sa_0.5.inst.cfg │ ├── tronxy_x5sa_0.6.inst.cfg │ ├── tronxy_x5sa_0.8.inst.cfg │ ├── tronxy_x5sa_400_0.2.inst.cfg │ ├── tronxy_x5sa_400_0.3.inst.cfg │ ├── tronxy_x5sa_400_0.4.inst.cfg │ ├── tronxy_x5sa_400_0.5.inst.cfg │ ├── tronxy_x5sa_400_0.6.inst.cfg │ ├── tronxy_x5sa_400_0.8.inst.cfg │ ├── tronxy_x5sa_500_0.2.inst.cfg │ ├── tronxy_x5sa_500_0.3.inst.cfg │ ├── tronxy_x5sa_500_0.4.inst.cfg │ ├── tronxy_x5sa_500_0.5.inst.cfg │ ├── tronxy_x5sa_500_0.6.inst.cfg │ ├── tronxy_x5sa_500_0.8.inst.cfg │ ├── tronxy_x_0.2.inst.cfg │ ├── tronxy_x_0.3.inst.cfg │ ├── tronxy_x_0.4.inst.cfg │ ├── tronxy_x_0.5.inst.cfg │ ├── tronxy_x_0.6.inst.cfg │ ├── tronxy_x_0.8.inst.cfg │ ├── tronxy_xy2_0.2.inst.cfg │ ├── tronxy_xy2_0.3.inst.cfg │ ├── tronxy_xy2_0.4.inst.cfg │ ├── tronxy_xy2_0.5.inst.cfg │ ├── tronxy_xy2_0.6.inst.cfg │ ├── tronxy_xy2_0.8.inst.cfg │ ├── tronxy_xy2pro_0.2.inst.cfg │ ├── tronxy_xy2pro_0.3.inst.cfg │ ├── tronxy_xy2pro_0.4.inst.cfg │ ├── tronxy_xy2pro_0.5.inst.cfg │ ├── tronxy_xy2pro_0.6.inst.cfg │ ├── tronxy_xy2pro_0.8.inst.cfg │ ├── tronxy_xy3_0.2.inst.cfg │ ├── tronxy_xy3_0.3.inst.cfg │ ├── tronxy_xy3_0.4.inst.cfg │ ├── tronxy_xy3_0.5.inst.cfg │ ├── tronxy_xy3_0.6.inst.cfg │ ├── tronxy_xy3_0.8.inst.cfg │ ├── tronxy_xy3proV2_0.2.inst.cfg │ ├── tronxy_xy3proV2_0.3.inst.cfg │ ├── tronxy_xy3proV2_0.4.inst.cfg │ ├── tronxy_xy3proV2_0.5.inst.cfg │ ├── tronxy_xy3proV2_0.6.inst.cfg │ └── tronxy_xy3proV2_0.8.inst.cfg │ ├── two_trees │ ├── two_trees_base_0.2.inst.cfg │ ├── two_trees_base_0.3.inst.cfg │ ├── two_trees_base_0.4.inst.cfg │ ├── two_trees_base_0.5.inst.cfg │ ├── two_trees_base_0.6.inst.cfg │ ├── two_trees_base_0.8.inst.cfg │ ├── two_trees_base_1.0.inst.cfg │ ├── two_trees_bluer_0.2.inst.cfg │ ├── two_trees_bluer_0.3.inst.cfg │ ├── two_trees_bluer_0.4.inst.cfg │ ├── two_trees_bluer_0.5.inst.cfg │ ├── two_trees_bluer_0.6.inst.cfg │ ├── two_trees_bluer_0.8.inst.cfg │ ├── two_trees_bluer_1.0.inst.cfg │ ├── two_trees_bluerplus_0.2.inst.cfg │ ├── two_trees_bluerplus_0.3.inst.cfg │ ├── two_trees_bluerplus_0.4.inst.cfg │ ├── two_trees_bluerplus_0.5.inst.cfg │ ├── two_trees_bluerplus_0.6.inst.cfg │ ├── two_trees_bluerplus_0.8.inst.cfg │ ├── two_trees_bluerplus_1.0.inst.cfg │ ├── two_trees_sapphireplus_0.2.inst.cfg │ ├── two_trees_sapphireplus_0.3.inst.cfg │ ├── two_trees_sapphireplus_0.4.inst.cfg │ ├── two_trees_sapphireplus_0.5.inst.cfg │ ├── two_trees_sapphireplus_0.6.inst.cfg │ ├── two_trees_sapphireplus_0.8.inst.cfg │ ├── two_trees_sapphireplus_1.0.inst.cfg │ ├── two_trees_sapphirepro_0.2.inst.cfg │ ├── two_trees_sapphirepro_0.3.inst.cfg │ ├── two_trees_sapphirepro_0.4.inst.cfg │ ├── two_trees_sapphirepro_0.5.inst.cfg │ ├── two_trees_sapphirepro_0.6.inst.cfg │ ├── two_trees_sapphirepro_0.8.inst.cfg │ └── two_trees_sapphirepro_1.0.inst.cfg │ ├── ultimaker2_extended_olsson_0.25.inst.cfg │ ├── ultimaker2_extended_olsson_0.4.inst.cfg │ ├── ultimaker2_extended_olsson_0.6.inst.cfg │ ├── ultimaker2_extended_olsson_0.8.inst.cfg │ ├── ultimaker2_extended_plus_0.25.inst.cfg │ ├── ultimaker2_extended_plus_0.4.inst.cfg │ ├── ultimaker2_extended_plus_0.6.inst.cfg │ ├── ultimaker2_extended_plus_0.8.inst.cfg │ ├── ultimaker2_olsson_0.25.inst.cfg │ ├── ultimaker2_olsson_0.4.inst.cfg │ ├── ultimaker2_olsson_0.6.inst.cfg │ ├── ultimaker2_olsson_0.8.inst.cfg │ ├── ultimaker2_plus_0.25.inst.cfg │ ├── ultimaker2_plus_0.4.inst.cfg │ ├── ultimaker2_plus_0.6.inst.cfg │ ├── ultimaker2_plus_0.8.inst.cfg │ ├── ultimaker2_plus_connect_0.25.inst.cfg │ ├── ultimaker2_plus_connect_0.4.inst.cfg │ ├── ultimaker2_plus_connect_0.6.inst.cfg │ ├── ultimaker2_plus_connect_0.8.inst.cfg │ ├── ultimaker3_aa0.25.inst.cfg │ ├── ultimaker3_aa0.8.inst.cfg │ ├── ultimaker3_aa04.inst.cfg │ ├── ultimaker3_bb0.8.inst.cfg │ ├── ultimaker3_bb04.inst.cfg │ ├── ultimaker3_extended_aa0.25.inst.cfg │ ├── ultimaker3_extended_aa0.8.inst.cfg │ ├── ultimaker3_extended_aa04.inst.cfg │ ├── ultimaker3_extended_bb0.8.inst.cfg │ ├── ultimaker3_extended_bb04.inst.cfg │ ├── ultimaker_factor4_aa0.25.inst.cfg │ ├── ultimaker_factor4_aa0.8.inst.cfg │ ├── ultimaker_factor4_aa04.inst.cfg │ ├── ultimaker_factor4_bb0.8.inst.cfg │ ├── ultimaker_factor4_bb04.inst.cfg │ ├── ultimaker_factor4_cc04.inst.cfg │ ├── ultimaker_factor4_cc06.inst.cfg │ ├── ultimaker_factor4_dd04.inst.cfg │ ├── ultimaker_factor4_ht06.inst.cfg │ ├── ultimaker_method_1A.inst.cfg │ ├── ultimaker_method_1C.inst.cfg │ ├── ultimaker_method_2A.inst.cfg │ ├── ultimaker_method_LABS.inst.cfg │ ├── ultimaker_methodx_1A.inst.cfg │ ├── ultimaker_methodx_1C.inst.cfg │ ├── ultimaker_methodx_1XA.inst.cfg │ ├── ultimaker_methodx_2A.inst.cfg │ ├── ultimaker_methodx_2XA.inst.cfg │ ├── ultimaker_methodx_LABS.inst.cfg │ ├── ultimaker_methodxl_1A.inst.cfg │ ├── ultimaker_methodxl_1C.inst.cfg │ ├── ultimaker_methodxl_1XA.inst.cfg │ ├── ultimaker_methodxl_2A.inst.cfg │ ├── ultimaker_methodxl_2XA.inst.cfg │ ├── ultimaker_methodxl_LABS.inst.cfg │ ├── ultimaker_replicator_smart_extruder_plus.inst.cfg │ ├── ultimaker_replicator_smart_extruder_plus_im-pla.inst.cfg │ ├── ultimaker_replicator_smart_extruder_plus_labs.inst.cfg │ ├── ultimaker_s3_aa0.25.inst.cfg │ ├── ultimaker_s3_aa0.8.inst.cfg │ ├── ultimaker_s3_aa04.inst.cfg │ ├── ultimaker_s3_bb0.8.inst.cfg │ ├── ultimaker_s3_bb04.inst.cfg │ ├── ultimaker_s3_cc04.inst.cfg │ ├── ultimaker_s3_cc06.inst.cfg │ ├── ultimaker_s3_dd04.inst.cfg │ ├── ultimaker_s5_aa0.25.inst.cfg │ ├── ultimaker_s5_aa0.8.inst.cfg │ ├── ultimaker_s5_aa04.inst.cfg │ ├── ultimaker_s5_aluminum.inst.cfg │ ├── ultimaker_s5_bb0.8.inst.cfg │ ├── ultimaker_s5_bb04.inst.cfg │ ├── ultimaker_s5_cc04.inst.cfg │ ├── ultimaker_s5_cc06.inst.cfg │ ├── ultimaker_s5_dd04.inst.cfg │ ├── ultimaker_s5_glass.inst.cfg │ ├── ultimaker_s6_aa025.inst.cfg │ ├── ultimaker_s6_aa04.inst.cfg │ ├── ultimaker_s6_aa08.inst.cfg │ ├── ultimaker_s6_aa_plus04.inst.cfg │ ├── ultimaker_s6_bb04.inst.cfg │ ├── ultimaker_s6_cc04.inst.cfg │ ├── ultimaker_s6_cc06.inst.cfg │ ├── ultimaker_s6_cc_plus04.inst.cfg │ ├── ultimaker_s6_cc_plus06.inst.cfg │ ├── ultimaker_s6_dd04.inst.cfg │ ├── ultimaker_s7_aa0.25.inst.cfg │ ├── ultimaker_s7_aa0.8.inst.cfg │ ├── ultimaker_s7_aa04.inst.cfg │ ├── ultimaker_s7_bb0.8.inst.cfg │ ├── ultimaker_s7_bb04.inst.cfg │ ├── ultimaker_s7_cc04.inst.cfg │ ├── ultimaker_s7_cc06.inst.cfg │ ├── ultimaker_s7_dd04.inst.cfg │ ├── ultimaker_s8_aa025.inst.cfg │ ├── ultimaker_s8_aa04.inst.cfg │ ├── ultimaker_s8_aa08.inst.cfg │ ├── ultimaker_s8_aa_plus04.inst.cfg │ ├── ultimaker_s8_bb04.inst.cfg │ ├── ultimaker_s8_cc04.inst.cfg │ ├── ultimaker_s8_cc06.inst.cfg │ ├── ultimaker_s8_cc_plus04.inst.cfg │ ├── ultimaker_s8_cc_plus06.inst.cfg │ ├── ultimaker_s8_dd04.inst.cfg │ ├── ultimaker_sketch_0.4mm.inst.cfg │ ├── ultimaker_sketch_large_0.4mm.inst.cfg │ ├── ultimaker_sketch_sprint_0.4mm.inst.cfg │ ├── uni │ ├── uni_200_0.30.inst.cfg │ ├── uni_200_0.40.inst.cfg │ ├── uni_200_0.50.inst.cfg │ ├── uni_250_0.30.inst.cfg │ ├── uni_250_0.40.inst.cfg │ ├── uni_250_0.50.inst.cfg │ ├── uni_300_0.30.inst.cfg │ ├── uni_300_0.40.inst.cfg │ ├── uni_300_0.50.inst.cfg │ ├── uni_base_0.30.inst.cfg │ ├── uni_base_0.40.inst.cfg │ ├── uni_base_0.50.inst.cfg │ ├── uni_mini_0.30.inst.cfg │ ├── uni_mini_0.40.inst.cfg │ └── uni_mini_0.50.inst.cfg │ ├── vivedino │ ├── vivedino_trex2plus_0.2.inst.cfg │ ├── vivedino_trex2plus_0.4.inst.cfg │ ├── vivedino_trex2plus_0.6.inst.cfg │ ├── vivedino_trex2plus_0.8.inst.cfg │ ├── vivedino_trex3_0.2.inst.cfg │ ├── vivedino_trex3_0.4.inst.cfg │ ├── vivedino_trex3_0.6.inst.cfg │ └── vivedino_trex3_0.8.inst.cfg │ ├── voron │ ├── voron0_120_v6_0.25.inst.cfg │ ├── voron0_120_v6_0.30.inst.cfg │ ├── voron0_120_v6_0.40.inst.cfg │ ├── voron0_120_v6_0.50.inst.cfg │ ├── voron0_120_v6_0.60.inst.cfg │ ├── voron0_120_v6_0.80.inst.cfg │ ├── voron2_250_v6_0.25.inst.cfg │ ├── voron2_250_v6_0.30.inst.cfg │ ├── voron2_250_v6_0.35.inst.cfg │ ├── voron2_250_v6_0.40.inst.cfg │ ├── voron2_250_v6_0.50.inst.cfg │ ├── voron2_250_v6_0.60.inst.cfg │ ├── voron2_250_v6_0.80.inst.cfg │ ├── voron2_250_volcano_0.40.inst.cfg │ ├── voron2_250_volcano_0.60.inst.cfg │ ├── voron2_250_volcano_0.80.inst.cfg │ ├── voron2_250_volcano_1.00.inst.cfg │ ├── voron2_250_volcano_1.20.inst.cfg │ ├── voron2_300_v6_0.25.inst.cfg │ ├── voron2_300_v6_0.30.inst.cfg │ ├── voron2_300_v6_0.35.inst.cfg │ ├── voron2_300_v6_0.40.inst.cfg │ ├── voron2_300_v6_0.50.inst.cfg │ ├── voron2_300_v6_0.60.inst.cfg │ ├── voron2_300_v6_0.80.inst.cfg │ ├── voron2_300_volcano_0.40.inst.cfg │ ├── voron2_300_volcano_0.60.inst.cfg │ ├── voron2_300_volcano_0.80.inst.cfg │ ├── voron2_300_volcano_1.00.inst.cfg │ ├── voron2_300_volcano_1.20.inst.cfg │ ├── voron2_350_v6_0.25.inst.cfg │ ├── voron2_350_v6_0.30.inst.cfg │ ├── voron2_350_v6_0.35.inst.cfg │ ├── voron2_350_v6_0.40.inst.cfg │ ├── voron2_350_v6_0.50.inst.cfg │ ├── voron2_350_v6_0.60.inst.cfg │ ├── voron2_350_v6_0.80.inst.cfg │ ├── voron2_350_volcano_0.40.inst.cfg │ ├── voron2_350_volcano_0.60.inst.cfg │ ├── voron2_350_volcano_0.80.inst.cfg │ ├── voron2_350_volcano_1.00.inst.cfg │ ├── voron2_350_volcano_1.20.inst.cfg │ ├── voron2_custom_v6_0.25.inst.cfg │ ├── voron2_custom_v6_0.30.inst.cfg │ ├── voron2_custom_v6_0.35.inst.cfg │ ├── voron2_custom_v6_0.40.inst.cfg │ ├── voron2_custom_v6_0.50.inst.cfg │ ├── voron2_custom_v6_0.60.inst.cfg │ ├── voron2_custom_v6_0.80.inst.cfg │ ├── voron2_custom_volcano_0.40.inst.cfg │ ├── voron2_custom_volcano_0.60.inst.cfg │ ├── voron2_custom_volcano_0.80.inst.cfg │ ├── voron2_custom_volcano_1.00.inst.cfg │ ├── voron2_custom_volcano_1.20.inst.cfg │ ├── voron_trident_250_0.25.inst.cfg │ ├── voron_trident_250_0.40.inst.cfg │ ├── voron_trident_250_0.50.inst.cfg │ ├── voron_trident_250_0.60.inst.cfg │ ├── voron_trident_250_0.80.inst.cfg │ ├── voron_trident_300_0.25.inst.cfg │ ├── voron_trident_300_0.40.inst.cfg │ ├── voron_trident_300_0.50.inst.cfg │ ├── voron_trident_300_0.60.inst.cfg │ ├── voron_trident_300_0.80.inst.cfg │ ├── voron_trident_350_0.25.inst.cfg │ ├── voron_trident_350_0.40.inst.cfg │ ├── voron_trident_350_0.50.inst.cfg │ ├── voron_trident_350_0.60.inst.cfg │ └── voron_trident_350_0.80.inst.cfg │ ├── vzbot │ ├── vzbot_235_0.2.inst.cfg │ ├── vzbot_235_0.3.inst.cfg │ ├── vzbot_235_0.4.inst.cfg │ ├── vzbot_235_0.5.inst.cfg │ ├── vzbot_235_0.6.inst.cfg │ ├── vzbot_235_0.8.inst.cfg │ ├── vzbot_235_1.0.inst.cfg │ ├── vzbot_330_0.2.inst.cfg │ ├── vzbot_330_0.3.inst.cfg │ ├── vzbot_330_0.4.inst.cfg │ ├── vzbot_330_0.5.inst.cfg │ ├── vzbot_330_0.6.inst.cfg │ ├── vzbot_330_0.8.inst.cfg │ ├── vzbot_330_1.0.inst.cfg │ ├── vzbot_base_0.2.inst.cfg │ ├── vzbot_base_0.3.inst.cfg │ ├── vzbot_base_0.4.inst.cfg │ ├── vzbot_base_0.5.inst.cfg │ ├── vzbot_base_0.6.inst.cfg │ ├── vzbot_base_0.8.inst.cfg │ ├── vzbot_base_1.0.inst.cfg │ ├── vzbot_custom_0.2.inst.cfg │ ├── vzbot_custom_0.3.inst.cfg │ ├── vzbot_custom_0.4.inst.cfg │ ├── vzbot_custom_0.5.inst.cfg │ ├── vzbot_custom_0.6.inst.cfg │ ├── vzbot_custom_0.8.inst.cfg │ └── vzbot_custom_1.0.inst.cfg │ ├── weedo │ ├── weedo_x40_weedo_0.4.inst.cfg │ ├── weedo_x40_weedo_0.6.inst.cfg │ └── weedo_x40_weedo_0.8.inst.cfg │ ├── xyz_printing │ ├── xyzprinting_base_0.40.inst.cfg │ ├── xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg │ ├── xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg │ ├── xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg │ ├── xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg │ ├── xyzprinting_da_vinci_super_copper_0.40.inst.cfg │ └── xyzprinting_da_vinci_super_hs_0.40.inst.cfg │ ├── zav │ ├── zav_base_0.20.inst.cfg │ ├── zav_base_0.25.inst.cfg │ ├── zav_base_0.30.inst.cfg │ ├── zav_base_0.35.inst.cfg │ ├── zav_base_0.40.inst.cfg │ ├── zav_base_0.45.inst.cfg │ ├── zav_base_0.50.inst.cfg │ ├── zav_base_0.60.inst.cfg │ ├── zav_base_0.80.inst.cfg │ ├── zav_base_1.00.inst.cfg │ ├── zav_big_0.20.inst.cfg │ ├── zav_big_0.25.inst.cfg │ ├── zav_big_0.30.inst.cfg │ ├── zav_big_0.35.inst.cfg │ ├── zav_big_0.40.inst.cfg │ ├── zav_big_0.45.inst.cfg │ ├── zav_big_0.50.inst.cfg │ ├── zav_big_0.60.inst.cfg │ ├── zav_big_0.80.inst.cfg │ ├── zav_big_1.00.inst.cfg │ ├── zav_bigplus_0.20.inst.cfg │ ├── zav_bigplus_0.25.inst.cfg │ ├── zav_bigplus_0.30.inst.cfg │ ├── zav_bigplus_0.35.inst.cfg │ ├── zav_bigplus_0.40.inst.cfg │ ├── zav_bigplus_0.45.inst.cfg │ ├── zav_bigplus_0.50.inst.cfg │ ├── zav_bigplus_0.60.inst.cfg │ ├── zav_bigplus_0.80.inst.cfg │ ├── zav_bigplus_1.00.inst.cfg │ ├── zav_l_0.20.inst.cfg │ ├── zav_l_0.25.inst.cfg │ ├── zav_l_0.30.inst.cfg │ ├── zav_l_0.35.inst.cfg │ ├── zav_l_0.40.inst.cfg │ ├── zav_l_0.45.inst.cfg │ ├── zav_l_0.50.inst.cfg │ ├── zav_l_0.60.inst.cfg │ ├── zav_l_0.80.inst.cfg │ ├── zav_l_1.00.inst.cfg │ ├── zav_max_0.20.inst.cfg │ ├── zav_max_0.25.inst.cfg │ ├── zav_max_0.30.inst.cfg │ ├── zav_max_0.35.inst.cfg │ ├── zav_max_0.40.inst.cfg │ ├── zav_max_0.45.inst.cfg │ ├── zav_max_0.50.inst.cfg │ ├── zav_max_0.60.inst.cfg │ ├── zav_max_0.80.inst.cfg │ ├── zav_max_1.00.inst.cfg │ ├── zav_maxpro_0.20.inst.cfg │ ├── zav_maxpro_0.25.inst.cfg │ ├── zav_maxpro_0.30.inst.cfg │ ├── zav_maxpro_0.35.inst.cfg │ ├── zav_maxpro_0.40.inst.cfg │ ├── zav_maxpro_0.45.inst.cfg │ ├── zav_maxpro_0.50.inst.cfg │ ├── zav_maxpro_0.60.inst.cfg │ ├── zav_maxpro_0.80.inst.cfg │ ├── zav_maxpro_1.00.inst.cfg │ ├── zav_mini_0.20.inst.cfg │ ├── zav_mini_0.25.inst.cfg │ ├── zav_mini_0.30.inst.cfg │ ├── zav_mini_0.35.inst.cfg │ ├── zav_mini_0.40.inst.cfg │ ├── zav_mini_0.45.inst.cfg │ ├── zav_mini_0.50.inst.cfg │ ├── zav_mini_0.60.inst.cfg │ ├── zav_mini_0.80.inst.cfg │ └── zav_mini_1.00.inst.cfg │ └── zyyx │ ├── zyyx_pro_carbon0.6.inst.cfg │ ├── zyyx_pro_carbon1.2.inst.cfg │ ├── zyyx_pro_multi0.2.inst.cfg │ ├── zyyx_pro_multi0.4.inst.cfg │ └── zyyx_pro_multi0.8.inst.cfg ├── scripts ├── check_gcode_buffer.py ├── check_invalid_imports.py ├── check_missing_translations.py ├── check_shortcut_keys.py ├── extract_changelog.py ├── fix_lokalize_translations.sh ├── fix_translation_memory.py ├── get_pypi_hashes.py ├── get_sdk_changelog.py ├── line_length_checker.py ├── lionbridge_import.py ├── obj_trimmer.py ├── rename_cura_1_tags.sh └── update_po_with_changes.py └── tests ├── API └── TestAccount.py ├── Machines ├── Models │ ├── TestDiscoveredCloudPrintersModel.py │ └── TestDiscoveredPrintersModel.py ├── TestContainerTree.py ├── TestMachineNode.py ├── TestMaterialNode.py ├── TestPlatformMeshes.py ├── TestQualityNode.py ├── TestStartEndGCode.py └── TestVariantNode.py ├── PrinterOutput ├── Models │ ├── TestPrintJobOutputModel.py │ ├── TestPrinterConfigurationModel.py │ └── TestPrinterOutputModel.py ├── TestNetworkedPrinterOutputDevice.py └── TestPrinterOutputDevice.py ├── Settings ├── MockContainer.py ├── TestContainerManager.py ├── TestCuraContainerRegistry.py ├── TestCuraStackBuilder.py ├── TestDefinitionContainer.py ├── TestExtruderStack.py ├── TestGlobalStack.py ├── TestProfiles.py ├── TestSettingInheritanceManager.py ├── TestSettingOverrideDecorator.py ├── TestSettingVisibilityPresets.py ├── __init__.py ├── conftest.py └── setting_visibility_preset_test.cfg ├── TestBuildVolume.py ├── TestConvexHullDecorator.py ├── TestCuraSceneController.py ├── TestCuraSceneNode.py ├── TestExtruderManager.py ├── TestGCodeListDecorator.py ├── TestHitChecker.py ├── TestIntentManager.py ├── TestLayer.py ├── TestMachineAction.py ├── TestMachineManager.py ├── TestOAuth2.py ├── TestObjectsModel.py ├── TestPrintInformation.py ├── TestPrintOrderManager.py ├── TestProfileRequirements.py ├── TestThemes.py ├── __init__.py └── conftest.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SlicingCrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/ISSUE_TEMPLATE/SlicingCrash.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/ISSUE_TEMPLATE/bugreport.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/conan-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/conan-package.yml -------------------------------------------------------------------------------- /.github/workflows/find-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/find-packages.yml -------------------------------------------------------------------------------- /.github/workflows/installers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/installers.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/nightly-stable.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/nightly-testing.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/security_badge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/security_badge.yml -------------------------------------------------------------------------------- /.github/workflows/slicing-error-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/slicing-error-check.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test-post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/unit-test-post.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.github/workflows/update-translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/update-translation.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.gitignore -------------------------------------------------------------------------------- /.printer-linter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.printer-linter -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/.pylintrc -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CuraVersion.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/CuraVersion.py.jinja -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [ultimaker] 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UltiMaker-Cura.spec.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/UltiMaker-Cura.spec.jinja -------------------------------------------------------------------------------- /conandata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/conandata.yml -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/conanfile.py -------------------------------------------------------------------------------- /cura-logo-dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura-logo-dark.PNG -------------------------------------------------------------------------------- /cura-logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura-logo.PNG -------------------------------------------------------------------------------- /cura.sharedmimeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura.sharedmimeinfo -------------------------------------------------------------------------------- /cura/API/Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/API/Account.py -------------------------------------------------------------------------------- /cura/API/Backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/API/Backups.py -------------------------------------------------------------------------------- /cura/API/ConnectionStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/API/ConnectionStatus.py -------------------------------------------------------------------------------- /cura/API/Interface/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/API/Interface/Settings.py -------------------------------------------------------------------------------- /cura/API/Interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/API/Interface/__init__.py -------------------------------------------------------------------------------- /cura/API/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/API/__init__.py -------------------------------------------------------------------------------- /cura/ApplicationMetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/ApplicationMetadata.py -------------------------------------------------------------------------------- /cura/Arranging/ArrangeObjectsJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Arranging/ArrangeObjectsJob.py -------------------------------------------------------------------------------- /cura/Arranging/Arranger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Arranging/Arranger.py -------------------------------------------------------------------------------- /cura/Arranging/GridArrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Arranging/GridArrange.py -------------------------------------------------------------------------------- /cura/Arranging/Nest2DArrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Arranging/Nest2DArrange.py -------------------------------------------------------------------------------- /cura/Arranging/ShapeArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Arranging/ShapeArray.py -------------------------------------------------------------------------------- /cura/Arranging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/AutoSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/AutoSave.py -------------------------------------------------------------------------------- /cura/BackendPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/BackendPlugin.py -------------------------------------------------------------------------------- /cura/Backups/Backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Backups/Backup.py -------------------------------------------------------------------------------- /cura/Backups/BackupsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Backups/BackupsManager.py -------------------------------------------------------------------------------- /cura/Backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/BuildVolume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/BuildVolume.py -------------------------------------------------------------------------------- /cura/CameraAnimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/CameraAnimation.py -------------------------------------------------------------------------------- /cura/CrashHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/CrashHandler.py -------------------------------------------------------------------------------- /cura/CuraActions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/CuraActions.py -------------------------------------------------------------------------------- /cura/CuraApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/CuraApplication.py -------------------------------------------------------------------------------- /cura/CuraPackageManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/CuraPackageManager.py -------------------------------------------------------------------------------- /cura/CuraRenderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/CuraRenderer.py -------------------------------------------------------------------------------- /cura/CuraView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/CuraView.py -------------------------------------------------------------------------------- /cura/HitChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/HitChecker.py -------------------------------------------------------------------------------- /cura/Layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Layer.py -------------------------------------------------------------------------------- /cura/LayerData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/LayerData.py -------------------------------------------------------------------------------- /cura/LayerDataBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/LayerDataBuilder.py -------------------------------------------------------------------------------- /cura/LayerDataDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/LayerDataDecorator.py -------------------------------------------------------------------------------- /cura/LayerPolygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/LayerPolygon.py -------------------------------------------------------------------------------- /cura/MachineAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/MachineAction.py -------------------------------------------------------------------------------- /cura/Machines/ContainerNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/ContainerNode.py -------------------------------------------------------------------------------- /cura/Machines/ContainerTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/ContainerTree.py -------------------------------------------------------------------------------- /cura/Machines/IntentNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/IntentNode.py -------------------------------------------------------------------------------- /cura/Machines/MachineErrorChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/MachineErrorChecker.py -------------------------------------------------------------------------------- /cura/Machines/MachineNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/MachineNode.py -------------------------------------------------------------------------------- /cura/Machines/MaterialGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/MaterialGroup.py -------------------------------------------------------------------------------- /cura/Machines/MaterialNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/MaterialNode.py -------------------------------------------------------------------------------- /cura/Machines/Models/BuildPlateModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/BuildPlateModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/ExtrudersModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/ExtrudersModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/GlobalStacksModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/GlobalStacksModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/IntentModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/IntentModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/MachineListModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/MachineListModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/MachineModelUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/MachineModelUtils.py -------------------------------------------------------------------------------- /cura/Machines/Models/NozzleModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/NozzleModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/UserChangesModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/Models/UserChangesModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Machines/QualityChangesGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/QualityChangesGroup.py -------------------------------------------------------------------------------- /cura/Machines/QualityGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/QualityGroup.py -------------------------------------------------------------------------------- /cura/Machines/QualityNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/QualityNode.py -------------------------------------------------------------------------------- /cura/Machines/VariantNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/VariantNode.py -------------------------------------------------------------------------------- /cura/Machines/VariantType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Machines/VariantType.py -------------------------------------------------------------------------------- /cura/Machines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/MultiplyObjectsJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/MultiplyObjectsJob.py -------------------------------------------------------------------------------- /cura/OAuth2/AuthorizationHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OAuth2/AuthorizationHelpers.py -------------------------------------------------------------------------------- /cura/OAuth2/AuthorizationRequestServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OAuth2/AuthorizationRequestServer.py -------------------------------------------------------------------------------- /cura/OAuth2/AuthorizationService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OAuth2/AuthorizationService.py -------------------------------------------------------------------------------- /cura/OAuth2/KeyringAttribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OAuth2/KeyringAttribute.py -------------------------------------------------------------------------------- /cura/OAuth2/LocalAuthorizationServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OAuth2/LocalAuthorizationServer.py -------------------------------------------------------------------------------- /cura/OAuth2/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OAuth2/Models.py -------------------------------------------------------------------------------- /cura/OAuth2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OAuth2/__init__.py -------------------------------------------------------------------------------- /cura/OneAtATimeIterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/OneAtATimeIterator.py -------------------------------------------------------------------------------- /cura/Operations/SetParentOperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Operations/SetParentOperation.py -------------------------------------------------------------------------------- /cura/Operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/PickingPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PickingPass.py -------------------------------------------------------------------------------- /cura/PlatformPhysics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PlatformPhysics.py -------------------------------------------------------------------------------- /cura/PreviewPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PreviewPass.py -------------------------------------------------------------------------------- /cura/PrintJobPreviewImageProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrintJobPreviewImageProvider.py -------------------------------------------------------------------------------- /cura/PrintOrderManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrintOrderManager.py -------------------------------------------------------------------------------- /cura/PrinterOutput/FirmwareUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrinterOutput/FirmwareUpdater.py -------------------------------------------------------------------------------- /cura/PrinterOutput/FormatMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrinterOutput/FormatMaps.py -------------------------------------------------------------------------------- /cura/PrinterOutput/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/PrinterOutput/NetworkMJPGImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrinterOutput/NetworkMJPGImage.py -------------------------------------------------------------------------------- /cura/PrinterOutput/Peripheral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrinterOutput/Peripheral.py -------------------------------------------------------------------------------- /cura/PrinterOutput/PrintJobOutputModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrinterOutput/PrintJobOutputModel.py -------------------------------------------------------------------------------- /cura/PrinterOutput/PrinterOutputDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrinterOutput/PrinterOutputDevice.py -------------------------------------------------------------------------------- /cura/PrinterOutput/UploadMaterialsJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/PrinterOutput/UploadMaterialsJob.py -------------------------------------------------------------------------------- /cura/PrinterOutput/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/ReaderWriters/ProfileReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/ReaderWriters/ProfileReader.py -------------------------------------------------------------------------------- /cura/ReaderWriters/ProfileWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/ReaderWriters/ProfileWriter.py -------------------------------------------------------------------------------- /cura/ReaderWriters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Scene/BlockSlicingDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/BlockSlicingDecorator.py -------------------------------------------------------------------------------- /cura/Scene/BuildPlateDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/BuildPlateDecorator.py -------------------------------------------------------------------------------- /cura/Scene/ConvexHullDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/ConvexHullDecorator.py -------------------------------------------------------------------------------- /cura/Scene/ConvexHullNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/ConvexHullNode.py -------------------------------------------------------------------------------- /cura/Scene/CuraSceneController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/CuraSceneController.py -------------------------------------------------------------------------------- /cura/Scene/CuraSceneNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/CuraSceneNode.py -------------------------------------------------------------------------------- /cura/Scene/GCodeListDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/GCodeListDecorator.py -------------------------------------------------------------------------------- /cura/Scene/SliceableObjectDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/SliceableObjectDecorator.py -------------------------------------------------------------------------------- /cura/Scene/ZOffsetDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Scene/ZOffsetDecorator.py -------------------------------------------------------------------------------- /cura/Scene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Settings/ActiveQuality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/ActiveQuality.py -------------------------------------------------------------------------------- /cura/Settings/ContainerManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/ContainerManager.py -------------------------------------------------------------------------------- /cura/Settings/CuraContainerRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/CuraContainerRegistry.py -------------------------------------------------------------------------------- /cura/Settings/CuraContainerStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/CuraContainerStack.py -------------------------------------------------------------------------------- /cura/Settings/CuraFormulaFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/CuraFormulaFunctions.py -------------------------------------------------------------------------------- /cura/Settings/CuraStackBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/CuraStackBuilder.py -------------------------------------------------------------------------------- /cura/Settings/DatabaseHandlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Settings/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/Exceptions.py -------------------------------------------------------------------------------- /cura/Settings/ExtruderManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/ExtruderManager.py -------------------------------------------------------------------------------- /cura/Settings/ExtruderStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/ExtruderStack.py -------------------------------------------------------------------------------- /cura/Settings/GlobalStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/GlobalStack.py -------------------------------------------------------------------------------- /cura/Settings/IntentManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/IntentManager.py -------------------------------------------------------------------------------- /cura/Settings/MachineManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/MachineManager.py -------------------------------------------------------------------------------- /cura/Settings/MachineNameValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/MachineNameValidator.py -------------------------------------------------------------------------------- /cura/Settings/PerObjectContainerStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/PerObjectContainerStack.py -------------------------------------------------------------------------------- /cura/Settings/SettingOverrideDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/SettingOverrideDecorator.py -------------------------------------------------------------------------------- /cura/Settings/SettingVisibilityPreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/SettingVisibilityPreset.py -------------------------------------------------------------------------------- /cura/Settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Settings/__init__.py -------------------------------------------------------------------------------- /cura/SingleInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/SingleInstance.py -------------------------------------------------------------------------------- /cura/Snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Snapshot.py -------------------------------------------------------------------------------- /cura/Stages/CuraStage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Stages/CuraStage.py -------------------------------------------------------------------------------- /cura/Stages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/TaskManagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/UI/AddPrinterPagesModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/AddPrinterPagesModel.py -------------------------------------------------------------------------------- /cura/UI/CuraSplashScreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/CuraSplashScreen.py -------------------------------------------------------------------------------- /cura/UI/MachineActionManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/MachineActionManager.py -------------------------------------------------------------------------------- /cura/UI/MachineSettingsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/MachineSettingsManager.py -------------------------------------------------------------------------------- /cura/UI/ObjectsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/ObjectsModel.py -------------------------------------------------------------------------------- /cura/UI/OpenSourceDependenciesModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/OpenSourceDependenciesModel.py -------------------------------------------------------------------------------- /cura/UI/OpenSourceDependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/OpenSourceDependency.py -------------------------------------------------------------------------------- /cura/UI/PrintInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/PrintInformation.py -------------------------------------------------------------------------------- /cura/UI/RecommendedMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/RecommendedMode.py -------------------------------------------------------------------------------- /cura/UI/TextManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/TextManager.py -------------------------------------------------------------------------------- /cura/UI/WelcomePagesModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/WelcomePagesModel.py -------------------------------------------------------------------------------- /cura/UI/WhatsNewPagesModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UI/WhatsNewPagesModel.py -------------------------------------------------------------------------------- /cura/UI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/UltimakerCloud/CloudMaterialSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/UltimakerCloud/CloudMaterialSync.py -------------------------------------------------------------------------------- /cura/UltimakerCloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Utils/Decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Utils/Decorators.py -------------------------------------------------------------------------------- /cura/Utils/NetworkingUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Utils/NetworkingUtil.py -------------------------------------------------------------------------------- /cura/Utils/Threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/Utils/Threading.py -------------------------------------------------------------------------------- /cura/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/XRayPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura/XRayPass.py -------------------------------------------------------------------------------- /cura/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/cura_app.py -------------------------------------------------------------------------------- /doc/settings_stacks.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/doc/settings_stacks.puml -------------------------------------------------------------------------------- /licenses_thirdparty/qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/licenses_thirdparty/qt.md -------------------------------------------------------------------------------- /packaging/AppImage/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/AppImage/AppRun -------------------------------------------------------------------------------- /packaging/AppImage/create_appimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/AppImage/create_appimage.py -------------------------------------------------------------------------------- /packaging/AppImage/cura.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/AppImage/cura.appdata.xml -------------------------------------------------------------------------------- /packaging/AppImage/cura.desktop.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/AppImage/cura.desktop.jinja -------------------------------------------------------------------------------- /packaging/MacOS/build_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/MacOS/build_macos.py -------------------------------------------------------------------------------- /packaging/MacOS/cura.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/MacOS/cura.entitlements -------------------------------------------------------------------------------- /packaging/MacOS/cura_background_dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/MacOS/cura_background_dmg.png -------------------------------------------------------------------------------- /packaging/NSIS/Ultimaker-Cura.nsi.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/NSIS/Ultimaker-Cura.nsi.jinja -------------------------------------------------------------------------------- /packaging/NSIS/cura_banner_nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/NSIS/cura_banner_nsis.bmp -------------------------------------------------------------------------------- /packaging/NSIS/fileassoc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/NSIS/fileassoc.nsh -------------------------------------------------------------------------------- /packaging/cura_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/cura_license.txt -------------------------------------------------------------------------------- /packaging/icons/Cura.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/Cura.ico -------------------------------------------------------------------------------- /packaging/icons/VolumeIcons_Cura.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/VolumeIcons_Cura.icns -------------------------------------------------------------------------------- /packaging/icons/cura-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-128.png -------------------------------------------------------------------------------- /packaging/icons/cura-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-32.png -------------------------------------------------------------------------------- /packaging/icons/cura-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-48.png -------------------------------------------------------------------------------- /packaging/icons/cura-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-64.png -------------------------------------------------------------------------------- /packaging/icons/cura-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-icon.svg -------------------------------------------------------------------------------- /packaging/icons/cura-icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-icon_128x128.png -------------------------------------------------------------------------------- /packaging/icons/cura-icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-icon_256x256.png -------------------------------------------------------------------------------- /packaging/icons/cura-icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura-icon_64x64.png -------------------------------------------------------------------------------- /packaging/icons/cura.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/icons/cura.icns -------------------------------------------------------------------------------- /packaging/msi/ExcludeComponents.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/msi/ExcludeComponents.xslt -------------------------------------------------------------------------------- /packaging/msi/UltiMaker-Cura.wxs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/msi/UltiMaker-Cura.wxs.jinja -------------------------------------------------------------------------------- /packaging/msi/banner_side.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/msi/banner_side.bmp -------------------------------------------------------------------------------- /packaging/msi/banner_top.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/msi/banner_top.bmp -------------------------------------------------------------------------------- /packaging/msi/create_windows_msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/msi/create_windows_msi.py -------------------------------------------------------------------------------- /packaging/msi/cura_license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/packaging/msi/cura_license.rtf -------------------------------------------------------------------------------- /plugins/3DConnexion/NavlibClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3DConnexion/NavlibClient.py -------------------------------------------------------------------------------- /plugins/3DConnexion/OverlayNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3DConnexion/OverlayNode.py -------------------------------------------------------------------------------- /plugins/3DConnexion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3DConnexion/__init__.py -------------------------------------------------------------------------------- /plugins/3DConnexion/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3DConnexion/plugin.json -------------------------------------------------------------------------------- /plugins/3MFReader/ThreeMFReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFReader/ThreeMFReader.py -------------------------------------------------------------------------------- /plugins/3MFReader/WorkspaceDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFReader/WorkspaceDialog.py -------------------------------------------------------------------------------- /plugins/3MFReader/WorkspaceDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFReader/WorkspaceDialog.qml -------------------------------------------------------------------------------- /plugins/3MFReader/WorkspaceRow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFReader/WorkspaceRow.qml -------------------------------------------------------------------------------- /plugins/3MFReader/WorkspaceSection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFReader/WorkspaceSection.qml -------------------------------------------------------------------------------- /plugins/3MFReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFReader/__init__.py -------------------------------------------------------------------------------- /plugins/3MFReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFReader/plugin.json -------------------------------------------------------------------------------- /plugins/3MFWriter/Cura3mfVariant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/Cura3mfVariant.py -------------------------------------------------------------------------------- /plugins/3MFWriter/SettingExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/SettingExport.py -------------------------------------------------------------------------------- /plugins/3MFWriter/SettingSelection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/SettingSelection.qml -------------------------------------------------------------------------------- /plugins/3MFWriter/SettingsExportGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/SettingsExportGroup.py -------------------------------------------------------------------------------- /plugins/3MFWriter/SettingsExportModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/SettingsExportModel.py -------------------------------------------------------------------------------- /plugins/3MFWriter/ThreeMFVariant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/ThreeMFVariant.py -------------------------------------------------------------------------------- /plugins/3MFWriter/ThreeMFWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/ThreeMFWriter.py -------------------------------------------------------------------------------- /plugins/3MFWriter/UCPDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/UCPDialog.py -------------------------------------------------------------------------------- /plugins/3MFWriter/UCPDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/UCPDialog.qml -------------------------------------------------------------------------------- /plugins/3MFWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/__init__.py -------------------------------------------------------------------------------- /plugins/3MFWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/plugin.json -------------------------------------------------------------------------------- /plugins/3MFWriter/tests/TestMFWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/3MFWriter/tests/TestMFWriter.py -------------------------------------------------------------------------------- /plugins/AMFReader/AMFReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/AMFReader/AMFReader.py -------------------------------------------------------------------------------- /plugins/AMFReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/AMFReader/__init__.py -------------------------------------------------------------------------------- /plugins/AMFReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/AMFReader/plugin.json -------------------------------------------------------------------------------- /plugins/CuraDrive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraDrive/__init__.py -------------------------------------------------------------------------------- /plugins/CuraDrive/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraDrive/plugin.json -------------------------------------------------------------------------------- /plugins/CuraDrive/src/CreateBackupJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraDrive/src/CreateBackupJob.py -------------------------------------------------------------------------------- /plugins/CuraDrive/src/DriveApiService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraDrive/src/DriveApiService.py -------------------------------------------------------------------------------- /plugins/CuraDrive/src/RestoreBackupJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraDrive/src/RestoreBackupJob.py -------------------------------------------------------------------------------- /plugins/CuraDrive/src/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraDrive/src/Settings.py -------------------------------------------------------------------------------- /plugins/CuraDrive/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/CuraDrive/src/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraDrive/src/qml/main.qml -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/Cura.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraEngineBackend/Cura.proto -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraEngineBackend/__init__.py -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraEngineBackend/plugin.json -------------------------------------------------------------------------------- /plugins/CuraProfileReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraProfileReader/__init__.py -------------------------------------------------------------------------------- /plugins/CuraProfileReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraProfileReader/plugin.json -------------------------------------------------------------------------------- /plugins/CuraProfileWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraProfileWriter/__init__.py -------------------------------------------------------------------------------- /plugins/CuraProfileWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/CuraProfileWriter/plugin.json -------------------------------------------------------------------------------- /plugins/DigitalLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/DigitalLibrary/__init__.py -------------------------------------------------------------------------------- /plugins/DigitalLibrary/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/DigitalLibrary/plugin.json -------------------------------------------------------------------------------- /plugins/DigitalLibrary/src/BaseModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/DigitalLibrary/src/BaseModel.py -------------------------------------------------------------------------------- /plugins/DigitalLibrary/src/CloudError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/DigitalLibrary/src/CloudError.py -------------------------------------------------------------------------------- /plugins/DigitalLibrary/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/DigitalLibrary/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/DigitalLibrary/tests/conftest.py -------------------------------------------------------------------------------- /plugins/FirmwareUpdateChecker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/FirmwareUpdateChecker/__init__.py -------------------------------------------------------------------------------- /plugins/FirmwareUpdateChecker/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/FirmwareUpdateChecker/plugin.json -------------------------------------------------------------------------------- /plugins/FirmwareUpdateChecker/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/FirmwareUpdater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/FirmwareUpdater/__init__.py -------------------------------------------------------------------------------- /plugins/FirmwareUpdater/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/FirmwareUpdater/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeGzReader/GCodeGzReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeGzReader/GCodeGzReader.py -------------------------------------------------------------------------------- /plugins/GCodeGzReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeGzReader/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeGzReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeGzReader/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeGzWriter/GCodeGzWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeGzWriter/GCodeGzWriter.py -------------------------------------------------------------------------------- /plugins/GCodeGzWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeGzWriter/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeGzWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeGzWriter/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeProfileReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeProfileReader/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeProfileReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeProfileReader/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeReader/FlavorParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeReader/FlavorParser.py -------------------------------------------------------------------------------- /plugins/GCodeReader/GCodeReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeReader/GCodeReader.py -------------------------------------------------------------------------------- /plugins/GCodeReader/MarlinFlavorParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeReader/MarlinFlavorParser.py -------------------------------------------------------------------------------- /plugins/GCodeReader/RepRapFlavorParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeReader/RepRapFlavorParser.py -------------------------------------------------------------------------------- /plugins/GCodeReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeReader/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeReader/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeWriter/GCodeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeWriter/GCodeWriter.py -------------------------------------------------------------------------------- /plugins/GCodeWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeWriter/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/GCodeWriter/plugin.json -------------------------------------------------------------------------------- /plugins/ImageReader/ConfigUI.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ImageReader/ConfigUI.qml -------------------------------------------------------------------------------- /plugins/ImageReader/ImageReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ImageReader/ImageReader.py -------------------------------------------------------------------------------- /plugins/ImageReader/ImageReaderUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ImageReader/ImageReaderUI.py -------------------------------------------------------------------------------- /plugins/ImageReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ImageReader/__init__.py -------------------------------------------------------------------------------- /plugins/ImageReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ImageReader/plugin.json -------------------------------------------------------------------------------- /plugins/LegacyProfileReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/LegacyProfileReader/__init__.py -------------------------------------------------------------------------------- /plugins/LegacyProfileReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/LegacyProfileReader/plugin.json -------------------------------------------------------------------------------- /plugins/MachineSettingsAction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MachineSettingsAction/__init__.py -------------------------------------------------------------------------------- /plugins/MachineSettingsAction/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MachineSettingsAction/plugin.json -------------------------------------------------------------------------------- /plugins/MakerbotWriter/MakerbotWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MakerbotWriter/MakerbotWriter.py -------------------------------------------------------------------------------- /plugins/MakerbotWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MakerbotWriter/__init__.py -------------------------------------------------------------------------------- /plugins/MakerbotWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MakerbotWriter/plugin.json -------------------------------------------------------------------------------- /plugins/Marketplace/CloudApiModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/CloudApiModel.py -------------------------------------------------------------------------------- /plugins/Marketplace/CloudSync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/Marketplace/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/Constants.py -------------------------------------------------------------------------------- /plugins/Marketplace/LocalPackageList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/LocalPackageList.py -------------------------------------------------------------------------------- /plugins/Marketplace/Marketplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/Marketplace.py -------------------------------------------------------------------------------- /plugins/Marketplace/MissingPackageList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/MissingPackageList.py -------------------------------------------------------------------------------- /plugins/Marketplace/PackageList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/PackageList.py -------------------------------------------------------------------------------- /plugins/Marketplace/PackageModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/PackageModel.py -------------------------------------------------------------------------------- /plugins/Marketplace/RemotePackageList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/RemotePackageList.py -------------------------------------------------------------------------------- /plugins/Marketplace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/__init__.py -------------------------------------------------------------------------------- /plugins/Marketplace/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/Marketplace/plugin.json -------------------------------------------------------------------------------- /plugins/ModelChecker/ModelChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ModelChecker/ModelChecker.py -------------------------------------------------------------------------------- /plugins/ModelChecker/ModelChecker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ModelChecker/ModelChecker.qml -------------------------------------------------------------------------------- /plugins/ModelChecker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ModelChecker/__init__.py -------------------------------------------------------------------------------- /plugins/ModelChecker/model_checker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ModelChecker/model_checker.svg -------------------------------------------------------------------------------- /plugins/ModelChecker/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/ModelChecker/plugin.json -------------------------------------------------------------------------------- /plugins/MonitorStage/MonitorMain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MonitorStage/MonitorMain.qml -------------------------------------------------------------------------------- /plugins/MonitorStage/MonitorMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MonitorStage/MonitorMenu.qml -------------------------------------------------------------------------------- /plugins/MonitorStage/MonitorStage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MonitorStage/MonitorStage.py -------------------------------------------------------------------------------- /plugins/MonitorStage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MonitorStage/__init__.py -------------------------------------------------------------------------------- /plugins/MonitorStage/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/MonitorStage/plugin.json -------------------------------------------------------------------------------- /plugins/PaintTool/BrushColorButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/BrushColorButton.qml -------------------------------------------------------------------------------- /plugins/PaintTool/BrushShapeButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/BrushShapeButton.qml -------------------------------------------------------------------------------- /plugins/PaintTool/PaintClearCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PaintClearCommand.py -------------------------------------------------------------------------------- /plugins/PaintTool/PaintCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PaintCommand.py -------------------------------------------------------------------------------- /plugins/PaintTool/PaintModeButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PaintModeButton.qml -------------------------------------------------------------------------------- /plugins/PaintTool/PaintStrokeCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PaintStrokeCommand.py -------------------------------------------------------------------------------- /plugins/PaintTool/PaintTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PaintTool.py -------------------------------------------------------------------------------- /plugins/PaintTool/PaintTool.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PaintTool.qml -------------------------------------------------------------------------------- /plugins/PaintTool/PaintView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PaintView.py -------------------------------------------------------------------------------- /plugins/PaintTool/PrepareTextureJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/PrepareTextureJob.py -------------------------------------------------------------------------------- /plugins/PaintTool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/__init__.py -------------------------------------------------------------------------------- /plugins/PaintTool/paint.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/paint.shader -------------------------------------------------------------------------------- /plugins/PaintTool/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PaintTool/plugin.json -------------------------------------------------------------------------------- /plugins/PerObjectSettingsTool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PerObjectSettingsTool/__init__.py -------------------------------------------------------------------------------- /plugins/PerObjectSettingsTool/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PerObjectSettingsTool/plugin.json -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PostProcessingPlugin/README.md -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PostProcessingPlugin/Script.py -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/Script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PostProcessingPlugin/Script.svg -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PostProcessingPlugin/__init__.py -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PostProcessingPlugin/plugin.json -------------------------------------------------------------------------------- /plugins/PrepareStage/PrepareMain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PrepareStage/PrepareMain.qml -------------------------------------------------------------------------------- /plugins/PrepareStage/PrepareMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PrepareStage/PrepareMenu.qml -------------------------------------------------------------------------------- /plugins/PrepareStage/PrepareStage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PrepareStage/PrepareStage.py -------------------------------------------------------------------------------- /plugins/PrepareStage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PrepareStage/__init__.py -------------------------------------------------------------------------------- /plugins/PrepareStage/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PrepareStage/plugin.json -------------------------------------------------------------------------------- /plugins/PreviewStage/PreviewMain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PreviewStage/PreviewMain.qml -------------------------------------------------------------------------------- /plugins/PreviewStage/PreviewMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PreviewStage/PreviewMenu.qml -------------------------------------------------------------------------------- /plugins/PreviewStage/PreviewStage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PreviewStage/PreviewStage.py -------------------------------------------------------------------------------- /plugins/PreviewStage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PreviewStage/__init__.py -------------------------------------------------------------------------------- /plugins/PreviewStage/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/PreviewStage/plugin.json -------------------------------------------------------------------------------- /plugins/README_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/README_plugins.txt -------------------------------------------------------------------------------- /plugins/SentryLogger/SentryLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SentryLogger/SentryLogger.py -------------------------------------------------------------------------------- /plugins/SentryLogger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SentryLogger/__init__.py -------------------------------------------------------------------------------- /plugins/SentryLogger/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SentryLogger/plugin.json -------------------------------------------------------------------------------- /plugins/SimulationView/LayerSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/LayerSlider.qml -------------------------------------------------------------------------------- /plugins/SimulationView/NozzleNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/NozzleNode.py -------------------------------------------------------------------------------- /plugins/SimulationView/PathSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/PathSlider.qml -------------------------------------------------------------------------------- /plugins/SimulationView/SimulationPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/SimulationPass.py -------------------------------------------------------------------------------- /plugins/SimulationView/SimulationView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/SimulationView.py -------------------------------------------------------------------------------- /plugins/SimulationView/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/__init__.py -------------------------------------------------------------------------------- /plugins/SimulationView/layers.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/layers.shader -------------------------------------------------------------------------------- /plugins/SimulationView/layers3d.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/layers3d.shader -------------------------------------------------------------------------------- /plugins/SimulationView/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/plugin.json -------------------------------------------------------------------------------- /plugins/SimulationView/resources/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SimulationView/resources/Play.svg -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/SliceInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SliceInfoPlugin/SliceInfo.py -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SliceInfoPlugin/__init__.py -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/example_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SliceInfoPlugin/example_data.html -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SliceInfoPlugin/plugin.json -------------------------------------------------------------------------------- /plugins/SolidView/SolidView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SolidView/SolidView.py -------------------------------------------------------------------------------- /plugins/SolidView/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SolidView/__init__.py -------------------------------------------------------------------------------- /plugins/SolidView/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SolidView/plugin.json -------------------------------------------------------------------------------- /plugins/SolidView/xray_overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SolidView/xray_overlay.shader -------------------------------------------------------------------------------- /plugins/SupportEraser/SupportEraser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SupportEraser/SupportEraser.py -------------------------------------------------------------------------------- /plugins/SupportEraser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SupportEraser/__init__.py -------------------------------------------------------------------------------- /plugins/SupportEraser/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/SupportEraser/plugin.json -------------------------------------------------------------------------------- /plugins/TrimeshReader/TrimeshReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/TrimeshReader/TrimeshReader.py -------------------------------------------------------------------------------- /plugins/TrimeshReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/TrimeshReader/__init__.py -------------------------------------------------------------------------------- /plugins/TrimeshReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/TrimeshReader/plugin.json -------------------------------------------------------------------------------- /plugins/UFPReader/UFPReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UFPReader/UFPReader.py -------------------------------------------------------------------------------- /plugins/UFPReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UFPReader/__init__.py -------------------------------------------------------------------------------- /plugins/UFPReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UFPReader/plugin.json -------------------------------------------------------------------------------- /plugins/UFPWriter/UFPWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UFPWriter/UFPWriter.py -------------------------------------------------------------------------------- /plugins/UFPWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UFPWriter/__init__.py -------------------------------------------------------------------------------- /plugins/UFPWriter/kitten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UFPWriter/kitten.png -------------------------------------------------------------------------------- /plugins/UFPWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UFPWriter/plugin.json -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UM3NetworkPrinting/__init__.py -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UM3NetworkPrinting/plugin.json -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Cloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Models/Http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/UM3NetworkPrinting/src/Utils.py -------------------------------------------------------------------------------- /plugins/USBPrinting/AutoDetectBaudJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/AutoDetectBaudJob.py -------------------------------------------------------------------------------- /plugins/USBPrinting/AvrFirmwareUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/AvrFirmwareUpdater.py -------------------------------------------------------------------------------- /plugins/USBPrinting/MonitorItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/MonitorItem.qml -------------------------------------------------------------------------------- /plugins/USBPrinting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/__init__.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/chipDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/avr_isp/chipDB.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/intelHex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/avr_isp/intelHex.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/ispBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/avr_isp/ispBase.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/stk500v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/avr_isp/stk500v2.py -------------------------------------------------------------------------------- /plugins/USBPrinting/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/USBPrinting/plugin.json -------------------------------------------------------------------------------- /plugins/X3DReader/X3DReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/X3DReader/X3DReader.py -------------------------------------------------------------------------------- /plugins/X3DReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/X3DReader/__init__.py -------------------------------------------------------------------------------- /plugins/X3DReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/X3DReader/plugin.json -------------------------------------------------------------------------------- /plugins/XRayView/XRayView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/XRayView/XRayView.py -------------------------------------------------------------------------------- /plugins/XRayView/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/XRayView/__init__.py -------------------------------------------------------------------------------- /plugins/XRayView/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/XRayView/plugin.json -------------------------------------------------------------------------------- /plugins/XmlMaterialProfile/PluginInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/XmlMaterialProfile/PluginInfo.py -------------------------------------------------------------------------------- /plugins/XmlMaterialProfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/XmlMaterialProfile/__init__.py -------------------------------------------------------------------------------- /plugins/XmlMaterialProfile/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/plugins/XmlMaterialProfile/plugin.json -------------------------------------------------------------------------------- /printer-linter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/printer-linter/README.md -------------------------------------------------------------------------------- /printer-linter/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/printer-linter/pyproject.toml -------------------------------------------------------------------------------- /printer-linter/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/printer-linter/setup.cfg -------------------------------------------------------------------------------- /printer-linter/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/printer-linter/setup.py -------------------------------------------------------------------------------- /printer-linter/src/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/printer-linter/src/terminal.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/pytest.ini -------------------------------------------------------------------------------- /resources/README_resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/README_resources.txt -------------------------------------------------------------------------------- /resources/bundled_packages/cura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/bundled_packages/cura.json -------------------------------------------------------------------------------- /resources/conandata.yml: -------------------------------------------------------------------------------- 1 | version: "5.11.0" 2 | -------------------------------------------------------------------------------- /resources/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/conanfile.py -------------------------------------------------------------------------------- /resources/definitions/101Hero.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/101Hero.def.json -------------------------------------------------------------------------------- /resources/definitions/3dator.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/3dator.def.json -------------------------------------------------------------------------------- /resources/definitions/3di_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/3di_base.def.json -------------------------------------------------------------------------------- /resources/definitions/3di_d300.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/3di_d300.def.json -------------------------------------------------------------------------------- /resources/definitions/SV01.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/SV01.def.json -------------------------------------------------------------------------------- /resources/definitions/SV02.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/SV02.def.json -------------------------------------------------------------------------------- /resources/definitions/SV03.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/SV03.def.json -------------------------------------------------------------------------------- /resources/definitions/abax_pri3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/abax_pri3.def.json -------------------------------------------------------------------------------- /resources/definitions/abax_pri5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/abax_pri5.def.json -------------------------------------------------------------------------------- /resources/definitions/abax_titan.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/abax_titan.def.json -------------------------------------------------------------------------------- /resources/definitions/alya3dp.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/alya3dp.def.json -------------------------------------------------------------------------------- /resources/definitions/alyanx3dp.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/alyanx3dp.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_a2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_a2.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_a6.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_a6.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_a8.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_a8.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_e10.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_e10.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_e12.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_e12.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_e16.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_e16.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_et4.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_et4.def.json -------------------------------------------------------------------------------- /resources/definitions/anet3d_et5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/anet3d_et5.def.json -------------------------------------------------------------------------------- /resources/definitions/arjun300.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/arjun300.def.json -------------------------------------------------------------------------------- /resources/definitions/atom2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/atom2.def.json -------------------------------------------------------------------------------- /resources/definitions/atom3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/atom3.def.json -------------------------------------------------------------------------------- /resources/definitions/atom3_lite.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/atom3_lite.def.json -------------------------------------------------------------------------------- /resources/definitions/beamup_l.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/beamup_l.def.json -------------------------------------------------------------------------------- /resources/definitions/beamup_s.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/beamup_s.def.json -------------------------------------------------------------------------------- /resources/definitions/bfb.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/bfb.def.json -------------------------------------------------------------------------------- /resources/definitions/bibo2_dual.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/bibo2_dual.def.json -------------------------------------------------------------------------------- /resources/definitions/biqu_b1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/biqu_b1.def.json -------------------------------------------------------------------------------- /resources/definitions/biqu_b2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/biqu_b2.def.json -------------------------------------------------------------------------------- /resources/definitions/biqu_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/biqu_base.def.json -------------------------------------------------------------------------------- /resources/definitions/blocks_one.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/blocks_one.def.json -------------------------------------------------------------------------------- /resources/definitions/blocks_r21.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/blocks_r21.def.json -------------------------------------------------------------------------------- /resources/definitions/bq_witbox.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/bq_witbox.def.json -------------------------------------------------------------------------------- /resources/definitions/cartesio.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/cartesio.def.json -------------------------------------------------------------------------------- /resources/definitions/custom.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/custom.def.json -------------------------------------------------------------------------------- /resources/definitions/delta_go.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/delta_go.def.json -------------------------------------------------------------------------------- /resources/definitions/deltabot.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/deltabot.def.json -------------------------------------------------------------------------------- /resources/definitions/diy220.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/diy220.def.json -------------------------------------------------------------------------------- /resources/definitions/dxu.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/dxu.def.json -------------------------------------------------------------------------------- /resources/definitions/dxu_dual.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/dxu_dual.def.json -------------------------------------------------------------------------------- /resources/definitions/dxu_umo.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/dxu_umo.def.json -------------------------------------------------------------------------------- /resources/definitions/eazao_m500.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/eazao_m500.def.json -------------------------------------------------------------------------------- /resources/definitions/eazao_m600.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/eazao_m600.def.json -------------------------------------------------------------------------------- /resources/definitions/eazao_m700.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/eazao_m700.def.json -------------------------------------------------------------------------------- /resources/definitions/eazao_zero.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/eazao_zero.def.json -------------------------------------------------------------------------------- /resources/definitions/erzay3d.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/erzay3d.def.json -------------------------------------------------------------------------------- /resources/definitions/fabtotum.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/fabtotum.def.json -------------------------------------------------------------------------------- /resources/definitions/fabxpro.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/fabxpro.def.json -------------------------------------------------------------------------------- /resources/definitions/farm2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/farm2.def.json -------------------------------------------------------------------------------- /resources/definitions/farm2_ce.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/farm2_ce.def.json -------------------------------------------------------------------------------- /resources/definitions/fdmprinter.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/fdmprinter.def.json -------------------------------------------------------------------------------- /resources/definitions/flsun_q5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/flsun_q5.def.json -------------------------------------------------------------------------------- /resources/definitions/flsun_qq.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/flsun_qq.def.json -------------------------------------------------------------------------------- /resources/definitions/flsun_qq_s.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/flsun_qq_s.def.json -------------------------------------------------------------------------------- /resources/definitions/flsun_sr.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/flsun_sr.def.json -------------------------------------------------------------------------------- /resources/definitions/flsun_v400.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/flsun_v400.def.json -------------------------------------------------------------------------------- /resources/definitions/fusion3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/fusion3.def.json -------------------------------------------------------------------------------- /resources/definitions/gmax15plus.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/gmax15plus.def.json -------------------------------------------------------------------------------- /resources/definitions/goofoo_far.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/goofoo_far.def.json -------------------------------------------------------------------------------- /resources/definitions/goofoo_max.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/goofoo_max.def.json -------------------------------------------------------------------------------- /resources/definitions/grr_neo.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/grr_neo.def.json -------------------------------------------------------------------------------- /resources/definitions/hms434.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/hms434.def.json -------------------------------------------------------------------------------- /resources/definitions/inat_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/inat_base.def.json -------------------------------------------------------------------------------- /resources/definitions/julia.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/julia.def.json -------------------------------------------------------------------------------- /resources/definitions/key3d_tyro.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/key3d_tyro.def.json -------------------------------------------------------------------------------- /resources/definitions/klema_180.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/klema_180.def.json -------------------------------------------------------------------------------- /resources/definitions/klema_250.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/klema_250.def.json -------------------------------------------------------------------------------- /resources/definitions/klema_500.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/klema_500.def.json -------------------------------------------------------------------------------- /resources/definitions/kosher.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/kosher.def.json -------------------------------------------------------------------------------- /resources/definitions/kossel_pro.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/kossel_pro.def.json -------------------------------------------------------------------------------- /resources/definitions/kupido.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/kupido.def.json -------------------------------------------------------------------------------- /resources/definitions/liquid.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/liquid.def.json -------------------------------------------------------------------------------- /resources/definitions/lnl3d_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/lnl3d_base.def.json -------------------------------------------------------------------------------- /resources/definitions/lnl3d_d3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/lnl3d_d3.def.json -------------------------------------------------------------------------------- /resources/definitions/lnl3d_d5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/lnl3d_d5.def.json -------------------------------------------------------------------------------- /resources/definitions/lnl3d_d6.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/lnl3d_d6.def.json -------------------------------------------------------------------------------- /resources/definitions/longer_lk1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/longer_lk1.def.json -------------------------------------------------------------------------------- /resources/definitions/longer_lk4.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/longer_lk4.def.json -------------------------------------------------------------------------------- /resources/definitions/longer_lk5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/longer_lk5.def.json -------------------------------------------------------------------------------- /resources/definitions/mendel90.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/mendel90.def.json -------------------------------------------------------------------------------- /resources/definitions/mingda_4h.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/mingda_4h.def.json -------------------------------------------------------------------------------- /resources/definitions/mingda_6h.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/mingda_6h.def.json -------------------------------------------------------------------------------- /resources/definitions/mingda_d2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/mingda_d2.def.json -------------------------------------------------------------------------------- /resources/definitions/nps.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/nps.def.json -------------------------------------------------------------------------------- /resources/definitions/nwa3d_a31.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/nwa3d_a31.def.json -------------------------------------------------------------------------------- /resources/definitions/nwa3d_a5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/nwa3d_a5.def.json -------------------------------------------------------------------------------- /resources/definitions/ord.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/ord.def.json -------------------------------------------------------------------------------- /resources/definitions/pbr3d_g1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/pbr3d_g1.def.json -------------------------------------------------------------------------------- /resources/definitions/predator.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/predator.def.json -------------------------------------------------------------------------------- /resources/definitions/prusa_i3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/prusa_i3.def.json -------------------------------------------------------------------------------- /resources/definitions/rigid3d.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/rigid3d.def.json -------------------------------------------------------------------------------- /resources/definitions/rigidbot.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/rigidbot.def.json -------------------------------------------------------------------------------- /resources/definitions/robo_3d_r1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/robo_3d_r1.def.json -------------------------------------------------------------------------------- /resources/definitions/sh65.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/sh65.def.json -------------------------------------------------------------------------------- /resources/definitions/skriware_2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/skriware_2.def.json -------------------------------------------------------------------------------- /resources/definitions/smoothie.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/smoothie.def.json -------------------------------------------------------------------------------- /resources/definitions/snapmaker2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/snapmaker2.def.json -------------------------------------------------------------------------------- /resources/definitions/sovol_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/sovol_base.def.json -------------------------------------------------------------------------------- /resources/definitions/sovol_sv01.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/sovol_sv01.def.json -------------------------------------------------------------------------------- /resources/definitions/sovol_sv03.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/sovol_sv03.def.json -------------------------------------------------------------------------------- /resources/definitions/sovol_sv05.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/sovol_sv05.def.json -------------------------------------------------------------------------------- /resources/definitions/sovol_sv06.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/sovol_sv06.def.json -------------------------------------------------------------------------------- /resources/definitions/sovol_sv08.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/sovol_sv08.def.json -------------------------------------------------------------------------------- /resources/definitions/strateo3d.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/strateo3d.def.json -------------------------------------------------------------------------------- /resources/definitions/tam.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tam.def.json -------------------------------------------------------------------------------- /resources/definitions/tank_m3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tank_m3.def.json -------------------------------------------------------------------------------- /resources/definitions/tizyx_evy.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tizyx_evy.def.json -------------------------------------------------------------------------------- /resources/definitions/tizyx_k25.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tizyx_k25.def.json -------------------------------------------------------------------------------- /resources/definitions/tronxy_d01.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tronxy_d01.def.json -------------------------------------------------------------------------------- /resources/definitions/tronxy_x.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tronxy_x.def.json -------------------------------------------------------------------------------- /resources/definitions/tronxy_xy2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tronxy_xy2.def.json -------------------------------------------------------------------------------- /resources/definitions/tronxy_xy3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/tronxy_xy3.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/ultimaker.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/ultimaker2.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/ultimaker3.def.json -------------------------------------------------------------------------------- /resources/definitions/uni_200.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/uni_200.def.json -------------------------------------------------------------------------------- /resources/definitions/uni_250.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/uni_250.def.json -------------------------------------------------------------------------------- /resources/definitions/uni_300.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/uni_300.def.json -------------------------------------------------------------------------------- /resources/definitions/uni_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/uni_base.def.json -------------------------------------------------------------------------------- /resources/definitions/uni_mini.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/uni_mini.def.json -------------------------------------------------------------------------------- /resources/definitions/voron0_120.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/voron0_120.def.json -------------------------------------------------------------------------------- /resources/definitions/voron2_250.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/voron2_250.def.json -------------------------------------------------------------------------------- /resources/definitions/voron2_300.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/voron2_300.def.json -------------------------------------------------------------------------------- /resources/definitions/voron2_350.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/voron2_350.def.json -------------------------------------------------------------------------------- /resources/definitions/vzbot_235.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/vzbot_235.def.json -------------------------------------------------------------------------------- /resources/definitions/vzbot_330.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/vzbot_330.def.json -------------------------------------------------------------------------------- /resources/definitions/vzbot_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/vzbot_base.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_d4s.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/wanhao_d4s.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_d6.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/wanhao_d6.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_d9.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/wanhao_d9.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_i3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/wanhao_i3.def.json -------------------------------------------------------------------------------- /resources/definitions/weedo_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/weedo_base.def.json -------------------------------------------------------------------------------- /resources/definitions/weedo_f370.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/weedo_f370.def.json -------------------------------------------------------------------------------- /resources/definitions/zav_base.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/zav_base.def.json -------------------------------------------------------------------------------- /resources/definitions/zav_big.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/zav_big.def.json -------------------------------------------------------------------------------- /resources/definitions/zav_l.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/zav_l.def.json -------------------------------------------------------------------------------- /resources/definitions/zav_max.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/zav_max.def.json -------------------------------------------------------------------------------- /resources/definitions/zav_mini.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/zav_mini.def.json -------------------------------------------------------------------------------- /resources/definitions/zyyx_pro.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/definitions/zyyx_pro.def.json -------------------------------------------------------------------------------- /resources/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/README.md -------------------------------------------------------------------------------- /resources/i18n/cs_CZ/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/cs_CZ/cura.po -------------------------------------------------------------------------------- /resources/i18n/cura.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/cura.pot -------------------------------------------------------------------------------- /resources/i18n/de_DE/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/de_DE/cura.po -------------------------------------------------------------------------------- /resources/i18n/es_ES/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/es_ES/cura.po -------------------------------------------------------------------------------- /resources/i18n/fdmextruder.def.json.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/fdmextruder.def.json.pot -------------------------------------------------------------------------------- /resources/i18n/fdmprinter.def.json.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/fdmprinter.def.json.pot -------------------------------------------------------------------------------- /resources/i18n/fi_FI/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/fi_FI/cura.po -------------------------------------------------------------------------------- /resources/i18n/fr_FR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/fr_FR/cura.po -------------------------------------------------------------------------------- /resources/i18n/hu_HU/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/hu_HU/cura.po -------------------------------------------------------------------------------- /resources/i18n/it_IT/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/it_IT/cura.po -------------------------------------------------------------------------------- /resources/i18n/ja_JP/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/ja_JP/cura.po -------------------------------------------------------------------------------- /resources/i18n/ko_KR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/ko_KR/cura.po -------------------------------------------------------------------------------- /resources/i18n/nl_NL/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/nl_NL/cura.po -------------------------------------------------------------------------------- /resources/i18n/pl_PL/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/pl_PL/cura.po -------------------------------------------------------------------------------- /resources/i18n/pt_BR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/pt_BR/cura.po -------------------------------------------------------------------------------- /resources/i18n/pt_PT/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/pt_PT/cura.po -------------------------------------------------------------------------------- /resources/i18n/ru_RU/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/ru_RU/cura.po -------------------------------------------------------------------------------- /resources/i18n/tr_TR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/tr_TR/cura.po -------------------------------------------------------------------------------- /resources/i18n/zh_CN/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/zh_CN/cura.po -------------------------------------------------------------------------------- /resources/i18n/zh_TW/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/i18n/zh_TW/cura.po -------------------------------------------------------------------------------- /resources/images/Cocoon-backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/Cocoon-backplate.png -------------------------------------------------------------------------------- /resources/images/Magna2_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/Magna2_230.png -------------------------------------------------------------------------------- /resources/images/Magna2_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/Magna2_300.png -------------------------------------------------------------------------------- /resources/images/Magna2_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/Magna2_400.png -------------------------------------------------------------------------------- /resources/images/Magna2_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/Magna2_500.png -------------------------------------------------------------------------------- /resources/images/MakerbotSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/MakerbotSketch.png -------------------------------------------------------------------------------- /resources/images/Wanhaobackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/Wanhaobackplate.png -------------------------------------------------------------------------------- /resources/images/ankermake_m5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/ankermake_m5.png -------------------------------------------------------------------------------- /resources/images/ankermake_m5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/ankermake_m5c.png -------------------------------------------------------------------------------- /resources/images/anycubic-chiron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/anycubic-chiron.png -------------------------------------------------------------------------------- /resources/images/anycubic_predator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/anycubic_predator.png -------------------------------------------------------------------------------- /resources/images/cor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cor.png -------------------------------------------------------------------------------- /resources/images/cubicon_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cubicon_icon.png -------------------------------------------------------------------------------- /resources/images/cubicon_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cubicon_log.png -------------------------------------------------------------------------------- /resources/images/cura-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura-icon-32.png -------------------------------------------------------------------------------- /resources/images/cura-icon-32_wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura-icon-32_wip.png -------------------------------------------------------------------------------- /resources/images/cura-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura-icon.png -------------------------------------------------------------------------------- /resources/images/cura-icon_wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura-icon_wip.png -------------------------------------------------------------------------------- /resources/images/cura-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura-share.png -------------------------------------------------------------------------------- /resources/images/cura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura.png -------------------------------------------------------------------------------- /resources/images/cura_enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura_enterprise.png -------------------------------------------------------------------------------- /resources/images/cura_wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/cura_wip.png -------------------------------------------------------------------------------- /resources/images/dagoma_sigma_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/dagoma_sigma_pro.png -------------------------------------------------------------------------------- /resources/images/dxu_backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/dxu_backplate.png -------------------------------------------------------------------------------- /resources/images/fabtotum_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/fabtotum_platform.png -------------------------------------------------------------------------------- /resources/images/farm2ceplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/farm2ceplate.png -------------------------------------------------------------------------------- /resources/images/farm2plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/farm2plate.png -------------------------------------------------------------------------------- /resources/images/hellbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/hellbot.png -------------------------------------------------------------------------------- /resources/images/hellbot_hidra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/hellbot_hidra.png -------------------------------------------------------------------------------- /resources/images/hellbot_hidra_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/hellbot_hidra_plus.png -------------------------------------------------------------------------------- /resources/images/hellbot_magna_SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/hellbot_magna_SE.png -------------------------------------------------------------------------------- /resources/images/hms434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/hms434.png -------------------------------------------------------------------------------- /resources/images/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/kitten.jpg -------------------------------------------------------------------------------- /resources/images/koonovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/koonovo.png -------------------------------------------------------------------------------- /resources/images/koshertext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/koshertext.png -------------------------------------------------------------------------------- /resources/images/moai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/moai.jpg -------------------------------------------------------------------------------- /resources/images/svtbacktext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/svtbacktext.png -------------------------------------------------------------------------------- /resources/images/tank_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/tank_m.png -------------------------------------------------------------------------------- /resources/images/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/uni.png -------------------------------------------------------------------------------- /resources/images/wanhao-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/wanhao-icon.png -------------------------------------------------------------------------------- /resources/images/zav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/images/zav.png -------------------------------------------------------------------------------- /resources/meshes/101hero-platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/101hero-platform.3mf -------------------------------------------------------------------------------- /resources/meshes/3dator_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/3dator_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/3di_d300_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/3di_d300_platform.STL -------------------------------------------------------------------------------- /resources/meshes/Atom 3 bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/Atom 3 bed.3mf -------------------------------------------------------------------------------- /resources/meshes/Atom 3 lite bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/Atom 3 lite bed.3mf -------------------------------------------------------------------------------- /resources/meshes/BIQU_BX_PLATE.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/BIQU_BX_PLATE.stl -------------------------------------------------------------------------------- /resources/meshes/BIQU_Hurakan_bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/BIQU_Hurakan_bed.stl -------------------------------------------------------------------------------- /resources/meshes/BIQU_SSS.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/BIQU_SSS.stl -------------------------------------------------------------------------------- /resources/meshes/FT-5_build_plate.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/FT-5_build_plate.3mf -------------------------------------------------------------------------------- /resources/meshes/FelixPro2_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/FelixPro2_platform.obj -------------------------------------------------------------------------------- /resources/meshes/FelixTec4_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/FelixTec4_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/SH65_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/SH65_platform.STL -------------------------------------------------------------------------------- /resources/meshes/Vertex_build_panel.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/Vertex_build_panel.3mf -------------------------------------------------------------------------------- /resources/meshes/alya_nx_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/alya_nx_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/alya_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/alya_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/aneta6_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/aneta6_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/arjun300_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/arjun300_platform.stl -------------------------------------------------------------------------------- /resources/meshes/artemis_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/artemis_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/artillery_genius.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/artillery_genius.stl -------------------------------------------------------------------------------- /resources/meshes/artillery_hornet.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/artillery_hornet.stl -------------------------------------------------------------------------------- /resources/meshes/artillery_swx1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/artillery_swx1.stl -------------------------------------------------------------------------------- /resources/meshes/beamup_l.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/beamup_l.3mf -------------------------------------------------------------------------------- /resources/meshes/beamup_s.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/beamup_s.3mf -------------------------------------------------------------------------------- /resources/meshes/bq_witbox_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/bq_witbox_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/cartesio_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/cartesio_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/cr-x.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/cr-x.3mf -------------------------------------------------------------------------------- /resources/meshes/creality_cr10spro.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/creality_cr10spro.3mf -------------------------------------------------------------------------------- /resources/meshes/creality_ender3.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/creality_ender3.3mf -------------------------------------------------------------------------------- /resources/meshes/creality_ender3max.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/creality_ender3max.stl -------------------------------------------------------------------------------- /resources/meshes/dagoma_magis.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/dagoma_magis.3mf -------------------------------------------------------------------------------- /resources/meshes/dagoma_neva.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/dagoma_neva.3mf -------------------------------------------------------------------------------- /resources/meshes/dagoma_pro430.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/dagoma_pro430.obj -------------------------------------------------------------------------------- /resources/meshes/dagoma_sigma.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/dagoma_sigma.stl -------------------------------------------------------------------------------- /resources/meshes/dagoma_sigma_pro.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/dagoma_sigma_pro.obj -------------------------------------------------------------------------------- /resources/meshes/deltacomb.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/deltacomb.3mf -------------------------------------------------------------------------------- /resources/meshes/deltacomb_dc20.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/deltacomb_dc20.stl -------------------------------------------------------------------------------- /resources/meshes/deltacomb_dc30.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/deltacomb_dc30.stl -------------------------------------------------------------------------------- /resources/meshes/diy220_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/diy220_platform.obj -------------------------------------------------------------------------------- /resources/meshes/elegoo_neptune_2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/elegoo_neptune_2.stl -------------------------------------------------------------------------------- /resources/meshes/elegoo_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/elegoo_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/fabtotum_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/fabtotum_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/fabxpro_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/fabxpro_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/farm2_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/farm2_platform.obj -------------------------------------------------------------------------------- /resources/meshes/flsun_qq_s.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/flsun_qq_s.3mf -------------------------------------------------------------------------------- /resources/meshes/flsun_sr.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/flsun_sr.stl -------------------------------------------------------------------------------- /resources/meshes/flsun_v400.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/flsun_v400.stl -------------------------------------------------------------------------------- /resources/meshes/grr_neo_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/grr_neo_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/hctech_hc300-m2h.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hctech_hc300-m2h.3mf -------------------------------------------------------------------------------- /resources/meshes/hctech_hc300-m3.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hctech_hc300-m3.3mf -------------------------------------------------------------------------------- /resources/meshes/hellbot_adonis.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hellbot_adonis.obj -------------------------------------------------------------------------------- /resources/meshes/hellbot_hidra.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hellbot_hidra.obj -------------------------------------------------------------------------------- /resources/meshes/hellbot_hidra_plus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hellbot_hidra_plus.obj -------------------------------------------------------------------------------- /resources/meshes/hellbot_magna.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hellbot_magna.obj -------------------------------------------------------------------------------- /resources/meshes/hellbot_magna_SE.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hellbot_magna_SE.obj -------------------------------------------------------------------------------- /resources/meshes/hms_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/hms_platform.obj -------------------------------------------------------------------------------- /resources/meshes/inventor_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/inventor_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/jgaurora_a5.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/jgaurora_a5.3mf -------------------------------------------------------------------------------- /resources/meshes/kemiq_q2.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/kemiq_q2.3mf -------------------------------------------------------------------------------- /resources/meshes/kingroon_kp3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/kingroon_kp3.stl -------------------------------------------------------------------------------- /resources/meshes/kingroon_kp3s.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/kingroon_kp3s.stl -------------------------------------------------------------------------------- /resources/meshes/koonovo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/koonovo.obj -------------------------------------------------------------------------------- /resources/meshes/koonovo_kn3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/koonovo_kn3.stl -------------------------------------------------------------------------------- /resources/meshes/koonovo_kn5.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/koonovo_kn5.stl -------------------------------------------------------------------------------- /resources/meshes/kossel_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/kossel_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/liquid_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/liquid_platform.stl -------------------------------------------------------------------------------- /resources/meshes/lnl3d_d3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/lnl3d_d3.stl -------------------------------------------------------------------------------- /resources/meshes/lnl3d_d5.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/lnl3d_d5.stl -------------------------------------------------------------------------------- /resources/meshes/lnl3d_d6.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/lnl3d_d6.3mf -------------------------------------------------------------------------------- /resources/meshes/lulzbot_mini.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/lulzbot_mini.stl -------------------------------------------------------------------------------- /resources/meshes/mendel90_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/mendel90_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/mingda_d2_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/mingda_d2_base.stl -------------------------------------------------------------------------------- /resources/meshes/mingda_d4pro_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/mingda_d4pro_base.stl -------------------------------------------------------------------------------- /resources/meshes/mingda_rock3_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/mingda_rock3_base.stl -------------------------------------------------------------------------------- /resources/meshes/moai.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/moai.obj -------------------------------------------------------------------------------- /resources/meshes/npscura.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/npscura.stl -------------------------------------------------------------------------------- /resources/meshes/predator_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/predator_platform.stl -------------------------------------------------------------------------------- /resources/meshes/printrbot_play.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/printrbot_play.3mf -------------------------------------------------------------------------------- /resources/meshes/prusai3_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/prusai3_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/ratrig_vcore3_200.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/ratrig_vcore3_200.stl -------------------------------------------------------------------------------- /resources/meshes/ratrig_vcore3_300.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/ratrig_vcore3_300.stl -------------------------------------------------------------------------------- /resources/meshes/ratrig_vcore3_400.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/ratrig_vcore3_400.stl -------------------------------------------------------------------------------- /resources/meshes/ratrig_vcore3_500.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/ratrig_vcore3_500.stl -------------------------------------------------------------------------------- /resources/meshes/ratrig_vminion.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/ratrig_vminion.stl -------------------------------------------------------------------------------- /resources/meshes/rigidbot_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/rigidbot_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/rostock_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/rostock_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/stereotech_start.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/stereotech_start.3mf -------------------------------------------------------------------------------- /resources/meshes/tam_series1.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/tam_series1.3mf -------------------------------------------------------------------------------- /resources/meshes/tank_m.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/tank_m.obj -------------------------------------------------------------------------------- /resources/meshes/tevo_blackwidow.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/tevo_blackwidow.3mf -------------------------------------------------------------------------------- /resources/meshes/tinyboy_ra20.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/tinyboy_ra20.obj -------------------------------------------------------------------------------- /resources/meshes/tizyx_k25_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/tizyx_k25_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/tronxy.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/tronxy.stl -------------------------------------------------------------------------------- /resources/meshes/twotrees_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/twotrees_platform.stl -------------------------------------------------------------------------------- /resources/meshes/ultimaker_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/ultimaker_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/uni_200_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/uni_200_platform.stl -------------------------------------------------------------------------------- /resources/meshes/uni_250_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/uni_250_platform.stl -------------------------------------------------------------------------------- /resources/meshes/uni_300_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/uni_300_platform.stl -------------------------------------------------------------------------------- /resources/meshes/uni_mini_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/uni_mini_platform.stl -------------------------------------------------------------------------------- /resources/meshes/vivedino_trex.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/vivedino_trex.stl -------------------------------------------------------------------------------- /resources/meshes/voron0_120_bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/voron0_120_bed.stl -------------------------------------------------------------------------------- /resources/meshes/voron2_250_bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/voron2_250_bed.3mf -------------------------------------------------------------------------------- /resources/meshes/voron2_300_bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/voron2_300_bed.3mf -------------------------------------------------------------------------------- /resources/meshes/voron2_350_bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/voron2_350_bed.3mf -------------------------------------------------------------------------------- /resources/meshes/vzbot_235_bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/vzbot_235_bed.stl -------------------------------------------------------------------------------- /resources/meshes/vzbot_330_bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/vzbot_330_bed.stl -------------------------------------------------------------------------------- /resources/meshes/weedo_x40.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/weedo_x40.3mf -------------------------------------------------------------------------------- /resources/meshes/zav_big.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zav_big.stl -------------------------------------------------------------------------------- /resources/meshes/zav_bigplus.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zav_bigplus.stl -------------------------------------------------------------------------------- /resources/meshes/zav_l.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zav_l.stl -------------------------------------------------------------------------------- /resources/meshes/zav_max.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zav_max.stl -------------------------------------------------------------------------------- /resources/meshes/zav_maxpro.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zav_maxpro.stl -------------------------------------------------------------------------------- /resources/meshes/zav_mini.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zav_mini.stl -------------------------------------------------------------------------------- /resources/meshes/zyyx_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zyyx_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/zyyx_pro_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/meshes/zyyx_pro_platform.stl -------------------------------------------------------------------------------- /resources/public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/public_key.pem -------------------------------------------------------------------------------- /resources/qml/Account/AccountWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Account/AccountWidget.qml -------------------------------------------------------------------------------- /resources/qml/Account/AvatarImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Account/AvatarImage.qml -------------------------------------------------------------------------------- /resources/qml/Account/SyncState.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Account/SyncState.qml -------------------------------------------------------------------------------- /resources/qml/ActionButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ActionButton.qml -------------------------------------------------------------------------------- /resources/qml/Actions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Actions.qml -------------------------------------------------------------------------------- /resources/qml/BorderGroup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/BorderGroup.qml -------------------------------------------------------------------------------- /resources/qml/CategoryButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/CategoryButton.qml -------------------------------------------------------------------------------- /resources/qml/Cura.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Cura.qml -------------------------------------------------------------------------------- /resources/qml/Dialogs/AboutDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Dialogs/AboutDialog.qml -------------------------------------------------------------------------------- /resources/qml/Dialogs/ColorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Dialogs/ColorDialog.qml -------------------------------------------------------------------------------- /resources/qml/Dialogs/LicenseDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Dialogs/LicenseDialog.qml -------------------------------------------------------------------------------- /resources/qml/Dialogs/MessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Dialogs/MessageDialog.qml -------------------------------------------------------------------------------- /resources/qml/Dialogs/RenameDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Dialogs/RenameDialog.qml -------------------------------------------------------------------------------- /resources/qml/ExpandableComponent.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ExpandableComponent.qml -------------------------------------------------------------------------------- /resources/qml/ExpandablePopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ExpandablePopup.qml -------------------------------------------------------------------------------- /resources/qml/ExtruderButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ExtruderButton.qml -------------------------------------------------------------------------------- /resources/qml/ExtruderIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ExtruderIcon.qml -------------------------------------------------------------------------------- /resources/qml/FPSItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/FPSItem.qml -------------------------------------------------------------------------------- /resources/qml/IconWithText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/IconWithText.qml -------------------------------------------------------------------------------- /resources/qml/JobSpecs.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/JobSpecs.qml -------------------------------------------------------------------------------- /resources/qml/LabelBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/LabelBar.qml -------------------------------------------------------------------------------- /resources/qml/MachineAction.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/MachineAction.qml -------------------------------------------------------------------------------- /resources/qml/Menus/ContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/ContextMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/EditMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/EditMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/ExtensionMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/ExtensionMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/FileMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/FileMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/HelpMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/HelpMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/MaterialMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/MaterialMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/NozzleMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/NozzleMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/OpenFilesMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/OpenFilesMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/PreferencesMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/PreferencesMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/PrinterMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/PrinterMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/PrinterTypeMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/PrinterTypeMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/RecentFilesMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/RecentFilesMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/SaveProjectMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/SaveProjectMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/SettingsMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/SettingsMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/ViewMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Menus/ViewMenu.qml -------------------------------------------------------------------------------- /resources/qml/ModeSelectorButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ModeSelectorButton.qml -------------------------------------------------------------------------------- /resources/qml/MonitorButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/MonitorButton.qml -------------------------------------------------------------------------------- /resources/qml/ObjectItemButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ObjectItemButton.qml -------------------------------------------------------------------------------- /resources/qml/ObjectSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ObjectSelector.qml -------------------------------------------------------------------------------- /resources/qml/PrimaryButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/PrimaryButton.qml -------------------------------------------------------------------------------- /resources/qml/PrintMonitor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/PrintMonitor.qml -------------------------------------------------------------------------------- /resources/qml/PrintSetupTooltip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/PrintSetupTooltip.qml -------------------------------------------------------------------------------- /resources/qml/PrinterTypeLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/PrinterTypeLabel.qml -------------------------------------------------------------------------------- /resources/qml/ProfileOverview.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ProfileOverview.qml -------------------------------------------------------------------------------- /resources/qml/RadioCheckbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/RadioCheckbar.qml -------------------------------------------------------------------------------- /resources/qml/RoundedRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/RoundedRectangle.qml -------------------------------------------------------------------------------- /resources/qml/SearchBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/SearchBar.qml -------------------------------------------------------------------------------- /resources/qml/SecondaryButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/SecondaryButton.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Settings/SettingItem.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Settings/SettingView.qml -------------------------------------------------------------------------------- /resources/qml/SpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/SpinBox.qml -------------------------------------------------------------------------------- /resources/qml/TableView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/TableView.qml -------------------------------------------------------------------------------- /resources/qml/TertiaryButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/TertiaryButton.qml -------------------------------------------------------------------------------- /resources/qml/ToolTip.qml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/qml/Toolbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Toolbar.qml -------------------------------------------------------------------------------- /resources/qml/ViewOrientationButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ViewOrientationButton.qml -------------------------------------------------------------------------------- /resources/qml/ViewsSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/ViewsSelector.qml -------------------------------------------------------------------------------- /resources/qml/Widgets/ComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Widgets/ComboBox.qml -------------------------------------------------------------------------------- /resources/qml/Widgets/Menu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Widgets/Menu.qml -------------------------------------------------------------------------------- /resources/qml/Widgets/MenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Widgets/MenuItem.qml -------------------------------------------------------------------------------- /resources/qml/Widgets/MenuSeparator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Widgets/MenuSeparator.qml -------------------------------------------------------------------------------- /resources/qml/Widgets/RadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Widgets/RadioButton.qml -------------------------------------------------------------------------------- /resources/qml/Widgets/ScrollView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Widgets/ScrollView.qml -------------------------------------------------------------------------------- /resources/qml/Widgets/TextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/Widgets/TextField.qml -------------------------------------------------------------------------------- /resources/qml/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/qml/qmldir -------------------------------------------------------------------------------- /resources/quality/coarse.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/coarse.inst.cfg -------------------------------------------------------------------------------- /resources/quality/draft.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/draft.inst.cfg -------------------------------------------------------------------------------- /resources/quality/extra_coarse.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/extra_coarse.inst.cfg -------------------------------------------------------------------------------- /resources/quality/extra_fast.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/extra_fast.inst.cfg -------------------------------------------------------------------------------- /resources/quality/fast.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/fast.inst.cfg -------------------------------------------------------------------------------- /resources/quality/high.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/high.inst.cfg -------------------------------------------------------------------------------- /resources/quality/normal.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/normal.inst.cfg -------------------------------------------------------------------------------- /resources/quality/nps/nps_PC_A.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/nps/nps_PC_A.inst.cfg -------------------------------------------------------------------------------- /resources/quality/nps/nps_PC_B.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/nps/nps_PC_B.inst.cfg -------------------------------------------------------------------------------- /resources/quality/nps/nps_PC_C.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/quality/nps/nps_PC_C.inst.cfg -------------------------------------------------------------------------------- /resources/setting_visibility/basic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/setting_visibility/basic.cfg -------------------------------------------------------------------------------- /resources/setting_visibility/expert.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/setting_visibility/expert.cfg -------------------------------------------------------------------------------- /resources/shaders/grid.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/shaders/grid.shader -------------------------------------------------------------------------------- /resources/shaders/overhang.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/shaders/overhang.shader -------------------------------------------------------------------------------- /resources/shaders/striped.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/shaders/striped.shader -------------------------------------------------------------------------------- /resources/shaders/xray.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/shaders/xray.shader -------------------------------------------------------------------------------- /resources/shaders/xray_composite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/shaders/xray_composite.shader -------------------------------------------------------------------------------- /resources/texts/change_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/texts/change_log.txt -------------------------------------------------------------------------------- /resources/texts/product_to_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/texts/product_to_id.json -------------------------------------------------------------------------------- /resources/themes/cura-dark/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/themes/cura-dark/theme.json -------------------------------------------------------------------------------- /resources/themes/cura-light/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/themes/cura-light/theme.json -------------------------------------------------------------------------------- /resources/themes/daily_test_colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/themes/daily_test_colors.json -------------------------------------------------------------------------------- /resources/variants/dxu/dxu_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/variants/dxu/dxu_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/dxu/dxu_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/variants/dxu/dxu_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/dxu/dxu_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/resources/variants/dxu/dxu_0.8.inst.cfg -------------------------------------------------------------------------------- /scripts/check_gcode_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/check_gcode_buffer.py -------------------------------------------------------------------------------- /scripts/check_invalid_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/check_invalid_imports.py -------------------------------------------------------------------------------- /scripts/check_missing_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/check_missing_translations.py -------------------------------------------------------------------------------- /scripts/check_shortcut_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/check_shortcut_keys.py -------------------------------------------------------------------------------- /scripts/extract_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/extract_changelog.py -------------------------------------------------------------------------------- /scripts/fix_lokalize_translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/fix_lokalize_translations.sh -------------------------------------------------------------------------------- /scripts/fix_translation_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/fix_translation_memory.py -------------------------------------------------------------------------------- /scripts/get_pypi_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/get_pypi_hashes.py -------------------------------------------------------------------------------- /scripts/get_sdk_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/get_sdk_changelog.py -------------------------------------------------------------------------------- /scripts/line_length_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/line_length_checker.py -------------------------------------------------------------------------------- /scripts/lionbridge_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/lionbridge_import.py -------------------------------------------------------------------------------- /scripts/obj_trimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/obj_trimmer.py -------------------------------------------------------------------------------- /scripts/rename_cura_1_tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/rename_cura_1_tags.sh -------------------------------------------------------------------------------- /scripts/update_po_with_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/scripts/update_po_with_changes.py -------------------------------------------------------------------------------- /tests/API/TestAccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/API/TestAccount.py -------------------------------------------------------------------------------- /tests/Machines/TestContainerTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Machines/TestContainerTree.py -------------------------------------------------------------------------------- /tests/Machines/TestMachineNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Machines/TestMachineNode.py -------------------------------------------------------------------------------- /tests/Machines/TestMaterialNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Machines/TestMaterialNode.py -------------------------------------------------------------------------------- /tests/Machines/TestPlatformMeshes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Machines/TestPlatformMeshes.py -------------------------------------------------------------------------------- /tests/Machines/TestQualityNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Machines/TestQualityNode.py -------------------------------------------------------------------------------- /tests/Machines/TestStartEndGCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Machines/TestStartEndGCode.py -------------------------------------------------------------------------------- /tests/Machines/TestVariantNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Machines/TestVariantNode.py -------------------------------------------------------------------------------- /tests/Settings/MockContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Settings/MockContainer.py -------------------------------------------------------------------------------- /tests/Settings/TestContainerManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Settings/TestContainerManager.py -------------------------------------------------------------------------------- /tests/Settings/TestCuraStackBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Settings/TestCuraStackBuilder.py -------------------------------------------------------------------------------- /tests/Settings/TestExtruderStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Settings/TestExtruderStack.py -------------------------------------------------------------------------------- /tests/Settings/TestGlobalStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Settings/TestGlobalStack.py -------------------------------------------------------------------------------- /tests/Settings/TestProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Settings/TestProfiles.py -------------------------------------------------------------------------------- /tests/Settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Settings/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/Settings/conftest.py -------------------------------------------------------------------------------- /tests/TestBuildVolume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestBuildVolume.py -------------------------------------------------------------------------------- /tests/TestConvexHullDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestConvexHullDecorator.py -------------------------------------------------------------------------------- /tests/TestCuraSceneController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestCuraSceneController.py -------------------------------------------------------------------------------- /tests/TestCuraSceneNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestCuraSceneNode.py -------------------------------------------------------------------------------- /tests/TestExtruderManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestExtruderManager.py -------------------------------------------------------------------------------- /tests/TestGCodeListDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestGCodeListDecorator.py -------------------------------------------------------------------------------- /tests/TestHitChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestHitChecker.py -------------------------------------------------------------------------------- /tests/TestIntentManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestIntentManager.py -------------------------------------------------------------------------------- /tests/TestLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestLayer.py -------------------------------------------------------------------------------- /tests/TestMachineAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestMachineAction.py -------------------------------------------------------------------------------- /tests/TestMachineManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestMachineManager.py -------------------------------------------------------------------------------- /tests/TestOAuth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestOAuth2.py -------------------------------------------------------------------------------- /tests/TestObjectsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestObjectsModel.py -------------------------------------------------------------------------------- /tests/TestPrintInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestPrintInformation.py -------------------------------------------------------------------------------- /tests/TestPrintOrderManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestPrintOrderManager.py -------------------------------------------------------------------------------- /tests/TestProfileRequirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestProfileRequirements.py -------------------------------------------------------------------------------- /tests/TestThemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/TestThemes.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimaker/Cura/HEAD/tests/conftest.py --------------------------------------------------------------------------------