Compare commits

...
Author SHA1 Message Date
SoftFever 2b59b6e974 Update README.md 2022-07-18 13:03:21 +08:00
Jack Li 8f594471c0 update readme 2022-07-18 12:56:14 +08:00
Jack Li 0977e3077f Add Voron 0.1 and Prusa MK3S support 2022-07-18 12:34:25 +08:00
Jack Li f087cd0db9 fix voron image ratio issue 2022-07-18 11:05:34 +08:00
Jack Li 5e615feef5 reduce image size 2022-07-18 10:02:55 +08:00
Jack Li 5f1725246f Change name so that it can co-exist with official build 2022-07-18 10:02:36 +08:00
Jack Li 829fc90e6f Add missing process file 2022-07-18 10:01:57 +08:00
SoftFever cc94674e39 Update README.md 2022-07-17 20:45:21 +08:00
SoftFever f16521adf6 update build script 2022-07-17 19:30:48 +08:00
SoftFever fc9d18faff Add Voron process settings 2022-07-17 19:24:44 +08:00
Jack Li ff768a6f68 WIP: add voron process setting 2022-07-17 12:53:41 +08:00
Jack Li 9c0f6f1c72 Add Voron machine support 2022-07-17 12:53:06 +08:00
Jack Li 7a7369c9ce Allow users to export .gcode files 2022-07-17 10:33:57 +08:00
Jack Li 687593f8d2 add build scripts 2022-07-17 10:27:18 +08:00
54 changed files with 1591 additions and 19 deletions
+29 -1
View File
@@ -1,5 +1,33 @@
![image](https://user-images.githubusercontent.com/106916061/179006347-497d24c0-9bd6-45b7-8c49-d5cc8ecfe5d7.png)
A modified version of Bambu Studio.
It has following changes:
- Support third-party machines:
- Voron 2.4
- Voron Trident
- Voron 0.1
- Prusa MK3S
- Export to to .gcode file.
Video: https://youtu.be/zCc7mVwu2xQ
![image](https://user-images.githubusercontent.com/103989404/179447873-b7b2a200-7a00-409d-b9d5-b0522f5f2ec8.png)
![image](https://user-images.githubusercontent.com/103989404/179447890-a124bd43-dab2-46b7-b0da-ef6c67783d9c.png)
![image](https://user-images.githubusercontent.com/103989404/179396355-fc07135a-fd08-430c-aa8d-dc1060ae94d1.png)
![image](https://user-images.githubusercontent.com/103989404/179447933-7752235a-a6eb-468c-a304-6eb0875c4c95.png)
![image](https://user-images.githubusercontent.com/103989404/179396363-d9868dfc-f8d5-4227-ad19-a439dfc31ce5.png)
![image](https://user-images.githubusercontent.com/103989404/179398283-f71ea1bd-18a8-4526-9678-a3c63bc36964.png)
Image credits:
1. Voron 2.4: vorondesign.com
2. Voron bed texture: VoronUsers/bryansj
3. Voron 0.1: myself
4. Prusa MK3S: Prusa3d
=========================SPLIT=========================
![image](https://user-images.githubusercontent.com/106916061/179006347-497d24c0-9bd6-45b7-8c49-d5cc8ecfe5d7.png)
# BambuStudio
Bambu Studio is a cutting-edge, feature-rich slicing software.
It contains project-based workflows, systematically optimized slicing algorithms, and an easy-to-use graphic interface, bringing users an incredibly smooth printing experience.
+14
View File
@@ -0,0 +1,14 @@
set WP=%CD%
cd deps
mkdir build
cd build
set DEPS=%CD%/BambuStudio_dep
cmake ../ -G "Visual Studio 16 2019" -DDESTDIR="%CD%/BambuStudio_dep" -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release --target ALL_BUILD -- -m
cd %WP%
mkdir build
cd build
cmake .. -G "Visual Studio 16 2019" -DBBL_RELEASE_TO_PUBLIC=0 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./BambuStudio-SoftFever" -DCMAKE_BUILD_TYPE=Release -DWIN10SDK_PATH="C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0"
cmake --build . --config Release --target ALL_BUILD -- -m
cmake --build . --target install --config Release
+68
View File
@@ -12,6 +12,26 @@
{
"name": "Bambu Lab X1",
"sub_path": "machine/Bambu Lab X1.json"
},
{
"name": "Voron 2.4 250",
"sub_path": "machine/Voron 2.4 250.json"
},
{
"name": "Voron 2.4 300",
"sub_path": "machine/Voron 2.4 300.json"
},
{
"name": "Voron 2.4 350",
"sub_path": "machine/Voron 2.4 350.json"
},
{
"name": "Voron 0.1",
"sub_path": "machine/Voron 0.1.json"
},
{
"name": "Prusa MK3S",
"sub_path": "machine/Prusa MK3S.json"
}
],
"process_list": [
@@ -94,6 +114,34 @@
{
"name": "0.40mm Standard @BBL X1C 0.8 nozzle",
"sub_path": "process/0.40mm Standard @BBL X1C 0.8 nozzle.json"
},
{
"name": "0.08mm Extra Fine @Voron",
"sub_path": "process/0.08mm Extra Fine @Voron.json"
},
{
"name": "0.12mm Fine @Voron",
"sub_path": "process/0.12mm Fine @Voron.json"
},
{
"name": "0.16mm Optimal @Voron",
"sub_path": "process/0.16mm Optimal @Voron.json"
},
{
"name": "0.20mm Standard @Voron",
"sub_path": "process/0.20mm Standard @Voron.json"
},
{
"name": "0.24mm Draft @Voron",
"sub_path": "process/0.24mm Draft @Voron.json"
},
{
"name": "0.28mm Extra Draft @Voron",
"sub_path": "process/0.28mm Extra Draft @Voron.json"
},
{
"name": "0.20mm Standard @MK3S",
"sub_path": "process/0.20mm Standard @MK3S.json"
}
],
"filament_list": [
@@ -342,6 +390,26 @@
{
"name": "Bambu Lab X1 Carbon 0.8 nozzle",
"sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle.json"
},
{
"name": "Voron 2.4 250 0.4 nozzle",
"sub_path": "machine/Voron 2.4 250 0.4 nozzle.json"
},
{
"name": "Voron 2.4 300 0.4 nozzle",
"sub_path": "machine/Voron 2.4 300 0.4 nozzle.json"
},
{
"name": "Voron 2.4 350 0.4 nozzle",
"sub_path": "machine/Voron 2.4 350 0.4 nozzle.json"
},
{
"name": "Voron 0.1 0.4 nozzle",
"sub_path": "machine/Voron 0.1 0.4 nozzle.json"
},
{
"name": "Prusa MK3S 0.4 nozzle",
"sub_path": "machine/Prusa MK3S 0.4 nozzle.json"
}
]
}
@@ -10,6 +10,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle"
]
@@ -9,6 +9,9 @@
"8"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -7,6 +7,11 @@
"inherits": "Bambu PC @base",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -22,6 +22,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -10,6 +10,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle"
]
}
@@ -10,6 +10,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -10,6 +10,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle"
]
}
@@ -10,6 +10,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -6,6 +6,9 @@
"instantiation": "true",
"inherits": "Bambu Support G @base",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -6,6 +6,9 @@
"instantiation": "true",
"inherits": "Bambu Support W @base",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -9,6 +9,9 @@
"6.4"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -14,6 +14,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -14,6 +14,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -16,6 +16,9 @@
"8"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -16,6 +16,9 @@
"16"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -13,6 +13,9 @@
"0.94"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -44,6 +44,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -16,6 +16,9 @@
"7"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -17,6 +17,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -20,6 +20,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -14,6 +14,11 @@
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle",
"Prusa MK3S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle"
]
}
@@ -9,6 +9,9 @@
"15"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -9,6 +9,9 @@
"22"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle"
"Bambu Lab X1 Carbon 0.4 nozzle",
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle"
]
}
@@ -0,0 +1,34 @@
{
"type": "machine",
"setting_id": "GM003",
"name": "Prusa MK3S 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_bbl_3dp_001_common",
"printer_model": "Prusa MK3S",
"default_filament_profile": [
"Bambu PLA Basic @BBL X1"
],
"default_print_profile": "0.20mm Standard @MK3S",
"nozzle_diameter": [
"0.4"
],
"bed_exclude_area": [
"0x0"
],
"printable_area": [
"0x0",
"250x0",
"250x210",
"0x210"
],
"printable_height": "210",
"machine_start_gcode": "M862.3 P \"[printer_model]\" ; printer model check\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S170 ; set extruder temp for bed leveling\nM140 S[bed_temperature_initial_layer_single] ; set bed temp\nM109 R170 ; wait for bed leveling temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp\nM204 T1250 ; set travel acceleration\nG28 ; home all without mesh bed level\nG29 ; mesh bed leveling \nM204 T[machine_max_acceleration_travel] ; restore travel acceleration\nM104 S[nozzle_temperature_initial_layer] ; set extruder temp\nG92 E0\nG1 Y-2 X179 F2400\nG1 Z3 F720\nM109 S[nozzle_temperature_initial_layer] ; wait for extruder temp\n\n; intro line\nG1 X170 F1000\nG1 Z0.2 F720\nG1 X110 E8 F900\nG1 X40 E10 F700\nG92 E0\n\nM221 S95 ; set flow",
"machine_end_gcode": "G1 E-1 F2100 ; retract\n{if max_layer_z < 210}G1 Z{min(max_layer_z+2, 210)} F720 ; Move print head up{endif}\nG1 X178 Y178 F4200 ; park print head\n{if max_layer_z < 210}G1 Z{min(max_layer_z+30, 210)} F720 ; Move print head further up{endif}\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nM221 S100 ; reset flow\nM900 K0 ; reset LA\nM84 ; disable motors",
"layer_change_gcode": "",
"scan_first_layer": "0",
"machine_load_filament_time": "17",
"machine_unload_filament_time": "16",
"nozzle_type": "hardened_steel",
"auxiliary_fan": "0"
}
@@ -0,0 +1,13 @@
{
"type": "machine_model",
"name": "Prusa MK3S",
"model_id": "BL-P002",
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
"nozzle_diameter": "0.4",
"machine_tech": "FFF",
"family": "BBL-3DP",
"bed_model": "mk3_bed.stl",
"bed_texture": "mk3.svg",
"hotend_model": "bbl-3dp-hotend.stl",
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
}
@@ -0,0 +1,33 @@
{
"type": "machine",
"setting_id": "GM003",
"name": "Voron 0.1 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_bbl_3dp_001_common",
"printer_model": "Voron 0.1",
"default_filament_profile": [
"Bambu PLA Basic @BBL X1"
],
"default_print_profile": "0.20mm Standard @Voron",
"nozzle_diameter": [
"0.4"
],
"bed_exclude_area": [
"0x0"
],
"printable_area": [
"0x0",
"120x0",
"120x120",
"0x120"
],
"printable_height": "120",
"machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]",
"machine_end_gcode": "PRINT_END",
"scan_first_layer": "0",
"machine_load_filament_time": "17",
"machine_unload_filament_time": "16",
"nozzle_type": "hardened_steel",
"auxiliary_fan": "0"
}
@@ -0,0 +1,13 @@
{
"type": "machine_model",
"name": "Voron 2.4 250",
"model_id": "BL-P002",
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
"nozzle_diameter": "0.4",
"machine_tech": "FFF",
"family": "BBL-3DP",
"bed_model": "",
"bed_texture": "voron_textured.png",
"hotend_model": "bbl-3dp-hotend.stl",
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
}
@@ -0,0 +1,34 @@
{
"type": "machine",
"setting_id": "GM003",
"name": "Voron 2.4 250 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_bbl_3dp_001_common",
"printer_model": "Voron 2.4 250",
"default_filament_profile": [
"Bambu PLA Basic @BBL X1"
],
"default_print_profile": "0.20mm Standard @Voron",
"nozzle_diameter": [
"0.4"
],
"bed_exclude_area": [
"0x0"
],
"printable_area": [
"0x0",
"250x0",
"250x250",
"0x250"
],
"printable_height": "225",
"machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]",
"machine_end_gcode": "PRINT_END",
"layer_change_gcode": "",
"scan_first_layer": "0",
"machine_load_filament_time": "17",
"machine_unload_filament_time": "16",
"nozzle_type": "hardened_steel",
"auxiliary_fan": "0"
}
@@ -0,0 +1,13 @@
{
"type": "machine_model",
"name": "Voron 2.4 250",
"model_id": "BL-P002",
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
"nozzle_diameter": "0.4",
"machine_tech": "FFF",
"family": "BBL-3DP",
"bed_model": "",
"bed_texture": "voron_textured.png",
"hotend_model": "bbl-3dp-hotend.stl",
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
}
@@ -0,0 +1,34 @@
{
"type": "machine",
"setting_id": "GM003",
"name": "Voron 2.4 300 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_bbl_3dp_001_common",
"printer_model": "Voron 2.4 300",
"default_filament_profile": [
"Bambu PLA Basic @BBL X1"
],
"default_print_profile": "0.20mm Standard @Voron",
"nozzle_diameter": [
"0.4"
],
"bed_exclude_area": [
"0x0"
],
"printable_area": [
"0x0",
"300x0",
"300x300",
"0x300"
],
"printable_height": "275",
"machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]",
"machine_end_gcode": "PRINT_END",
"layer_change_gcode": "",
"scan_first_layer": "0",
"machine_load_filament_time": "17",
"machine_unload_filament_time": "16",
"nozzle_type": "hardened_steel",
"auxiliary_fan": "0"
}
@@ -0,0 +1,13 @@
{
"type": "machine_model",
"name": "Voron 2.4 300",
"model_id": "BL-P002",
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
"nozzle_diameter": "0.4",
"machine_tech": "FFF",
"family": "BBL-3DP",
"bed_model": "",
"bed_texture": "voron_textured.png",
"hotend_model": "bbl-3dp-hotend.stl",
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
}
@@ -0,0 +1,34 @@
{
"type": "machine",
"setting_id": "GM003",
"name": "Voron 2.4 350 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_bbl_3dp_001_common",
"printer_model": "Voron 2.4 350",
"default_filament_profile": [
"Bambu PLA Basic @BBL X1"
],
"default_print_profile": "0.20mm Standard @Voron",
"nozzle_diameter": [
"0.4"
],
"bed_exclude_area": [
"0x0"
],
"printable_area": [
"0x0",
"350x0",
"350x350",
"0x350"
],
"printable_height": "325",
"machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]",
"machine_end_gcode": "PRINT_END",
"layer_change_gcode": "",
"scan_first_layer": "0",
"machine_load_filament_time": "17",
"machine_unload_filament_time": "16",
"nozzle_type": "hardened_steel",
"auxiliary_fan": "0"
}
@@ -0,0 +1,13 @@
{
"type": "machine_model",
"name": "Voron 2.4 350",
"model_id": "BL-P002",
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
"nozzle_diameter": "0.4",
"machine_tech": "FFF",
"family": "BBL-3DP",
"bed_model": "",
"bed_texture": "voron_textured.png",
"hotend_model": "bbl-3dp-hotend.stl",
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
}
+930
View File
@@ -0,0 +1,930 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="710.08"
height="596.69"
viewBox="0 0 710.08 596.69"
version="1.1"
id="svg3128">
<metadata
id="metadata3134">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>MK3_bottom</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3132" />
<title
id="title2792">MK3_bottom</title>
<line
x1="0.71"
y1="0.71"
x2="0.71"
y2="595.98"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.42"
id="line2794"
style="stroke-width:1.42;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="142.44833"
y1="0.71833557"
x2="142.44833"
y2="595.61292"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.43667"
id="line2796"
style="stroke-width:1.433;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="284.16168"
y1="0.71833557"
x2="284.16168"
y2="595.61292"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.43667"
id="line2798"
style="stroke-width:1.433;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="709.37"
y1="595.97998"
x2="709.37"
y2="0.70999998"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.43721"
id="line2800"
style="stroke-width:1.42;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.1709223"
y1="581.81"
x2="709.37"
y2="581.81"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.4333"
id="line2802" />
<line
x1="0.71"
y1="595.98"
x2="709.37"
y2="595.98"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.42"
id="line2804" />
<line
x1="1.1709223"
y1="440.07999"
x2="709.37"
y2="440.07999"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.4333"
id="line2806" />
<line
x1="1.1709223"
y1="298.35001"
x2="709.37"
y2="298.35001"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.4333"
id="line2808" />
<line
x1="1.1709223"
y1="156.61"
x2="709.37"
y2="156.61"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.4333"
id="line2810" />
<line
x1="1.1709223"
y1="14.88"
x2="709.37"
y2="14.88"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.4333"
id="line2812" />
<line
x1="709.37"
y1="0.71"
x2="0.71"
y2="0.71"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.42"
id="line2814" />
<line
x1="425.91"
y1="0.71"
x2="425.91"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.42"
id="line2816"
style="stroke-width:1.433;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="425.91"
y1="522.54852"
x2="425.91"
y2="595.72882"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.11117"
id="line2818"
style="stroke-width:1.433;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="567.64"
y1="0.71"
x2="567.64"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.42"
id="line2820"
style="stroke-width:1.433;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="567.64"
y1="522.54"
x2="567.64"
y2="527.69"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.42"
id="line2822"
style="stroke-width:1.433;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="567.64001"
y1="548.59186"
x2="567.64001"
y2="595.39081"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.67836"
id="line2824"
style="stroke-width:1.433;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="85.751419"
y1="0.71222502"
x2="85.751419"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2826" />
<line
x1="114.09101"
y1="0.71222502"
x2="114.09101"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2828" />
<line
x1="170.79019"
y1="0.71222502"
x2="170.79019"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2830" />
<line
x1="199.12981"
y1="0.71222502"
x2="199.12981"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2832" />
<line
x1="227.47939"
y1="0.71222502"
x2="227.47939"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2834" />
<line
x1="255.82899"
y1="0.71222502"
x2="255.82899"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2836" />
<line
x1="312.51816"
y1="0.71222502"
x2="312.51816"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2838" />
<line
x1="340.86777"
y1="0.71222502"
x2="340.86777"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2840" />
<line
x1="681.02002"
y1="0.71449536"
x2="681.02002"
y2="595.93481"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.374468"
id="line2842" />
<line
x1="29.062225"
y1="0.71222502"
x2="29.062225"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2844"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="57.401821"
y1="0.71222502"
x2="57.401821"
y2="595.883"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37445"
id="line2846" />
<line
x1="1.4567798"
y1="468.42999"
x2="709.37"
y2="468.42999"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2848"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="496.76999"
x2="709.37"
y2="496.76999"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2850"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="525.12"
x2="709.37"
y2="525.12"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2852"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="553.46002"
x2="709.37"
y2="553.46002"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2854"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="411.73001"
x2="709.37"
y2="411.73001"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2856"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="383.39001"
x2="709.37"
y2="383.39001"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2858"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="355.04001"
x2="709.37"
y2="355.04001"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2860"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="326.69"
x2="709.37"
y2="326.69"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2862"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="270"
x2="709.37"
y2="270"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2864"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="241.64999"
x2="709.37"
y2="241.64999"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2866"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="213.31"
x2="709.37"
y2="213.31"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2868"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="184.96001"
x2="709.37"
y2="184.96001"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2870"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="128.27"
x2="709.37"
y2="128.27"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2872"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="99.919998"
x2="709.37"
y2="99.919998"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2874"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="71.57"
x2="709.37"
y2="71.57"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2876"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="1.4567798"
y1="43.23"
x2="709.37"
y2="43.23"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.373389"
id="line2878"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="369.21"
y1="0.71"
x2="369.21"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2880"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="369.23029"
y1="522.5603"
x2="369.23029"
y2="595.6524"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.41059"
id="line2882"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="397.56"
y1="0.71"
x2="397.56"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2884"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="397.5397"
y1="522.5603"
x2="397.5397"
y2="595.6524"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.41059"
id="line2886"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="454.25"
y1="0.71"
x2="454.25"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2888"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="454.27032"
y1="522.5603"
x2="454.27032"
y2="595.61359"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.410677"
id="line2890"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="482.6"
y1="0.71"
x2="482.6"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2892"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="482.60678"
y1="522.5603"
x2="482.60678"
y2="595.61359"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.410677"
id="line2894"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="510.94"
y1="0.71"
x2="510.94"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2896"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="510.93323"
y1="522.5603"
x2="510.93323"
y2="595.61359"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.410677"
id="line2898"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="539.29"
y1="0.71"
x2="539.29"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2900"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="539.26965"
y1="522.5603"
x2="539.26965"
y2="595.61359"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.410677"
id="line2902"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="595.98"
y1="0.71"
x2="595.98"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2904"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="624.33"
y1="0.71"
x2="624.33"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2906"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="652.68"
y1="0.71"
x2="652.68"
y2="499.35"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2908"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="652.68"
y1="522.54"
x2="652.68"
y2="527.69"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2910"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="652.64447"
y1="548.34552"
x2="652.64447"
y2="595.99268"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.440987"
id="line2912"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="624.33"
y1="522.54"
x2="624.33"
y2="527.69"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2914"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="624.33002"
y1="548.34552"
x2="624.33002"
y2="595.99268"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.440987"
id="line2916"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="595.98"
y1="522.54"
x2="595.98"
y2="527.69"
fill="none"
stroke="#fff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.37"
id="line2918"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="596.0155"
y1="548.34552"
x2="596.0155"
y2="595.99268"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.440987"
id="line2920"
style="stroke-width:0.374;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M377.71,502.59a8,8,0,0,1,3.44.72,7.6,7.6,0,0,1,2.58,1.95,8.78,8.78,0,0,1,1.62,2.85,10.85,10.85,0,0,1,0,6.94,8.67,8.67,0,0,1-1.62,2.85,7.45,7.45,0,0,1-2.58,1.94,8.71,8.71,0,0,1-6.89,0,7.64,7.64,0,0,1-2.58-1.94,8.67,8.67,0,0,1-1.62-2.85,11,11,0,0,1,0-6.94,8.78,8.78,0,0,1,1.62-2.85,7.8,7.8,0,0,1,2.58-1.95A8,8,0,0,1,377.71,502.59Zm0,2.45a4.94,4.94,0,0,0-2.37.55,4.7,4.7,0,0,0-1.62,1.48,6.87,6.87,0,0,0-.92,2.1,9.75,9.75,0,0,0,0,4.8,6.87,6.87,0,0,0,.92,2.1,4.7,4.7,0,0,0,1.62,1.48,4.94,4.94,0,0,0,2.37.55,4.87,4.87,0,0,0,2.36-.55,4.7,4.7,0,0,0,1.62-1.48,6.64,6.64,0,0,0,.92-2.1,9.45,9.45,0,0,0,0-4.8,6.64,6.64,0,0,0-.92-2.1,4.7,4.7,0,0,0-1.62-1.48A4.87,4.87,0,0,0,377.71,505Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3068" />
<path
d="M388.65,503h8.18a6.32,6.32,0,0,1,4.25,1.23,4.23,4.23,0,0,1,1.42,3.4,5,5,0,0,1-.36,2,4.42,4.42,0,0,1-.84,1.3,3.4,3.4,0,0,1-.95.71c-.31.14-.54.23-.68.28V512a2.88,2.88,0,0,1,.82.24,2.38,2.38,0,0,1,.83.61,3.38,3.38,0,0,1,.64,1.09,4.82,4.82,0,0,1,.25,1.69,15.32,15.32,0,0,0,.23,2.74,3.59,3.59,0,0,0,.71,1.77h-3.22a2.88,2.88,0,0,1-.4-1.23c0-.44-.06-.88-.06-1.29a12,12,0,0,0-.14-2,3.57,3.57,0,0,0-.53-1.42,2.18,2.18,0,0,0-1-.82,4.53,4.53,0,0,0-1.69-.27h-4.42v7.06h-3Zm3,7.8h4.92a3.17,3.17,0,0,0,2.19-.68,2.68,2.68,0,0,0,.74-2.05,3.21,3.21,0,0,0-.24-1.34,1.94,1.94,0,0,0-.66-.8,2.39,2.39,0,0,0-1-.38,5.83,5.83,0,0,0-1.12-.1h-4.87Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3070" />
<path
d="M405.55,503h3v17.14h-3Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3072" />
<path
d="M427.17,520.14h-1.92l-.46-2a7.15,7.15,0,0,1-2.4,1.9,6.83,6.83,0,0,1-2.76.53,8.11,8.11,0,0,1-3.44-.71,7.45,7.45,0,0,1-2.58-1.94,8.67,8.67,0,0,1-1.62-2.85,11,11,0,0,1,0-6.94,8.78,8.78,0,0,1,1.62-2.85,7.6,7.6,0,0,1,2.58-1.95,8,8,0,0,1,3.44-.72,9.3,9.3,0,0,1,2.66.38,6.89,6.89,0,0,1,2.24,1.1,6.1,6.1,0,0,1,1.63,1.83,6.49,6.49,0,0,1,.82,2.55h-2.93a3.73,3.73,0,0,0-1.51-2.55,4.42,4.42,0,0,0-1.35-.64,5.3,5.3,0,0,0-1.56-.22,4.87,4.87,0,0,0-2.36.55,4.7,4.7,0,0,0-1.62,1.48,6.64,6.64,0,0,0-.92,2.1,9.75,9.75,0,0,0,0,4.8,6.64,6.64,0,0,0,.92,2.1,4.7,4.7,0,0,0,1.62,1.48,4.87,4.87,0,0,0,2.36.55,5.84,5.84,0,0,0,2-.3,3.91,3.91,0,0,0,2.43-2.44,6.11,6.11,0,0,0,.33-2h-4.56v-2.28h7.3Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3074" />
<path
d="M430.43,503h3v17.14h-3Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3076" />
<path
d="M437,503h3.16L448,515.63h0V503h2.85v17.14h-3.17l-7.8-12.6h-.07v12.6H437Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3078" />
<path
d="M459,503h3.19l6.6,17.14h-3.22L464,515.6h-6.84l-1.61,4.54h-3.1ZM458,513.32h5.23L460.63,506h-.08Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3080" />
<path
d="M470.44,503h3v14.55h8.71v2.59H470.44Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3082" />
<path
d="M490.89,503h7.56a7.15,7.15,0,0,1,3,.53,4.61,4.61,0,0,1,1.78,1.32,4.38,4.38,0,0,1,.85,1.73,6.93,6.93,0,0,1,.23,1.73,6.78,6.78,0,0,1-.23,1.71,4.4,4.4,0,0,1-.85,1.72,4.59,4.59,0,0,1-1.78,1.31,7.34,7.34,0,0,1-3,.51h-4.56v6.58h-3Zm3,8.11h4.39a3.7,3.7,0,0,0,1-.14,3,3,0,0,0,1-.47,2.45,2.45,0,0,0,.72-.86,3,3,0,0,0,.27-1.36,3.5,3.5,0,0,0-.24-1.39,2.18,2.18,0,0,0-.65-.88,2.35,2.35,0,0,0-.93-.44,5.09,5.09,0,0,0-1.13-.12h-4.44Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3084" />
<path
d="M506.9,503h8.18a6.34,6.34,0,0,1,4.25,1.23,4.26,4.26,0,0,1,1.42,3.4,4.78,4.78,0,0,1-.37,2,4.41,4.41,0,0,1-.83,1.3,3.55,3.55,0,0,1-.95.71c-.31.14-.54.23-.69.28V512a2.94,2.94,0,0,1,.83.24,2.47,2.47,0,0,1,.83.61,3.38,3.38,0,0,1,.64,1.09,5.06,5.06,0,0,1,.25,1.69,15.36,15.36,0,0,0,.22,2.74,3.68,3.68,0,0,0,.71,1.77h-3.21a2.75,2.75,0,0,1-.4-1.23c0-.44-.06-.88-.06-1.29a13.09,13.09,0,0,0-.14-2,3.72,3.72,0,0,0-.53-1.42,2.23,2.23,0,0,0-1-.82,4.59,4.59,0,0,0-1.7-.27H509.9v7.06h-3Zm3,7.8h4.92a3.13,3.13,0,0,0,2.18-.68,2.64,2.64,0,0,0,.75-2.05,3.21,3.21,0,0,0-.24-1.34,2,2,0,0,0-.67-.8,2.33,2.33,0,0,0-1-.38,5.73,5.73,0,0,0-1.11-.1H509.9Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3086" />
<path
d="M523.6,503h3v10c0,.58,0,1.17.08,1.76a4,4,0,0,0,.49,1.59,3,3,0,0,0,1.2,1.17,5.93,5.93,0,0,0,4.53,0,3,3,0,0,0,1.2-1.17,3.94,3.94,0,0,0,.48-1.59,17.44,17.44,0,0,0,.09-1.76V503h3v11a7.48,7.48,0,0,1-.51,2.88,5.38,5.38,0,0,1-1.43,2,5.87,5.87,0,0,1-2.22,1.24,10.32,10.32,0,0,1-5.76,0,6,6,0,0,1-2.22-1.24,5.47,5.47,0,0,1-1.42-2,7.48,7.48,0,0,1-.51-2.88Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3088" />
<path
d="M543.09,514.43a3.93,3.93,0,0,0,.33,1.68,3.17,3.17,0,0,0,.94,1.14,4,4,0,0,0,1.38.64,6.47,6.47,0,0,0,1.69.21,5.45,5.45,0,0,0,1.68-.23,3.34,3.34,0,0,0,1.13-.59,2,2,0,0,0,.62-.83,2.41,2.41,0,0,0,.2-.94,2,2,0,0,0-.45-1.46,2.54,2.54,0,0,0-1-.66c-.61-.22-1.32-.43-2.12-.63s-1.81-.46-3-.78a6.41,6.41,0,0,1-1.84-.76,4.38,4.38,0,0,1-1.16-1,3.63,3.63,0,0,1-.61-1.23,4.89,4.89,0,0,1-.18-1.32,4.45,4.45,0,0,1,.54-2.24,4.68,4.68,0,0,1,1.43-1.57,6.18,6.18,0,0,1,2-.93,8.81,8.81,0,0,1,2.28-.3,9,9,0,0,1,2.53.35,6.3,6.3,0,0,1,2.09,1,5.17,5.17,0,0,1,1.43,1.72,5.11,5.11,0,0,1,.53,2.37h-3a2.88,2.88,0,0,0-1.13-2.34,4.45,4.45,0,0,0-2.57-.69,5.82,5.82,0,0,0-1.08.11,3.37,3.37,0,0,0-1,.36,2.22,2.22,0,0,0-.75.68,1.86,1.86,0,0,0-.3,1.08,1.82,1.82,0,0,0,.56,1.43,3.54,3.54,0,0,0,1.48.78l.75.21,1.48.39,1.59.42,1.12.3a5.1,5.1,0,0,1,1.46.72,4.55,4.55,0,0,1,1.05,1.05,4.11,4.11,0,0,1,.62,1.26,4.41,4.41,0,0,1,.21,1.34,4.87,4.87,0,0,1-.59,2.46,5.06,5.06,0,0,1-1.55,1.67,6.81,6.81,0,0,1-2.18,1,11,11,0,0,1-2.5.3,10.23,10.23,0,0,1-2.76-.36,6.63,6.63,0,0,1-2.26-1.11,5.37,5.37,0,0,1-1.53-1.91,6.15,6.15,0,0,1-.6-2.74Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3090" />
<path
d="M561.26,503h3.19l6.6,17.14h-3.22l-1.61-4.54h-6.84l-1.6,4.54h-3.1Zm-1.06,10.32h5.23L562.86,506h-.07Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3092" />
<path
d="M579,503h2.74v2.59H579Zm0,4.73h2.74v12.41H579Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3094" />
<path
d="M588.78,510.3a6.82,6.82,0,0,0,1.35-.1,3.71,3.71,0,0,0,1.2-.42,2.33,2.33,0,0,0,.85-.83,2.38,2.38,0,0,0,.32-1.29,2.19,2.19,0,0,0-.73-1.73,2.74,2.74,0,0,0-1.88-.65,2.59,2.59,0,0,0-1.25.29,2.63,2.63,0,0,0-.88.78,3.57,3.57,0,0,0-.51,1.1,4.44,4.44,0,0,0-.15,1.26h-2.73a7,7,0,0,1,.45-2.27,6.06,6.06,0,0,1,1.12-1.81,4.93,4.93,0,0,1,1.72-1.2,5.87,5.87,0,0,1,2.28-.43,6.69,6.69,0,0,1,1.93.29,5.51,5.51,0,0,1,1.7.84,4.08,4.08,0,0,1,1.21,1.4,4,4,0,0,1,.46,2,4.13,4.13,0,0,1-.58,2.22,3.28,3.28,0,0,1-1.8,1.38v.05a3.49,3.49,0,0,1,2.25,1.43,4.72,4.72,0,0,1,.8,2.77,4.65,4.65,0,0,1-.48,2.14,4.84,4.84,0,0,1-1.29,1.61,6.09,6.09,0,0,1-1.9,1,7.71,7.71,0,0,1-4.84-.06,4.88,4.88,0,0,1-1.82-1.19,5.12,5.12,0,0,1-1.12-1.84,7.54,7.54,0,0,1-.4-2.4h2.73a3.78,3.78,0,0,0,.76,2.55,2.87,2.87,0,0,0,2.41,1,3.42,3.42,0,0,0,2.29-.78,2.74,2.74,0,0,0,.93-2.22,2.77,2.77,0,0,0-.39-1.56,2.44,2.44,0,0,0-1-.87,3.85,3.85,0,0,0-1.4-.37,12.06,12.06,0,0,0-1.6,0Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3096" />
<path
d="M548.43,531.91h2.06v4.75h0a3.05,3.05,0,0,1,.52-.61,3.13,3.13,0,0,1,.68-.46,3.58,3.58,0,0,1,.77-.29,3.19,3.19,0,0,1,.8-.1,4.42,4.42,0,0,1,1.92.39,3.77,3.77,0,0,1,1.36,1.06,4.64,4.64,0,0,1,.81,1.58,6.65,6.65,0,0,1,.27,1.92,6.89,6.89,0,0,1-.24,1.82,4.89,4.89,0,0,1-.74,1.56,3.57,3.57,0,0,1-3,1.48,7.57,7.57,0,0,1-.95-.06,3.93,3.93,0,0,1-.91-.24,3.06,3.06,0,0,1-.78-.47,2.28,2.28,0,0,1-.59-.76h0v1.28h-2Zm7.17,8.21a5.06,5.06,0,0,0-.16-1.23,3.27,3.27,0,0,0-.49-1,2.6,2.6,0,0,0-.81-.74,2.17,2.17,0,0,0-1.12-.28,2.26,2.26,0,0,0-1.95.9,4,4,0,0,0-.66,2.4,4.54,4.54,0,0,0,.18,1.3,2.89,2.89,0,0,0,.51,1,2.69,2.69,0,0,0,.82.68,2.26,2.26,0,0,0,1.1.25,2.21,2.21,0,0,0,1.19-.29,2.47,2.47,0,0,0,.8-.74,3.09,3.09,0,0,0,.45-1.05A5.3,5.3,0,0,0,555.6,540.12Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3098" />
<path
d="M558.35,535.45h2.25L563,542.4h0l2.36-6.95h2.14l-3.64,9.81c-.17.42-.33.83-.49,1.21a4.62,4.62,0,0,1-.59,1,2.61,2.61,0,0,1-.87.7,3,3,0,0,1-1.32.26,9.73,9.73,0,0,1-1.43-.11v-1.73l.49.08a2.63,2.63,0,0,0,.49,0,1.66,1.66,0,0,0,.59-.09,1,1,0,0,0,.39-.26,1.69,1.69,0,0,0,.26-.41,3.65,3.65,0,0,0,.2-.54l.23-.72Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3100" />
<path
d="M580.94,540.62a9.81,9.81,0,0,1-.14,1.64,3.52,3.52,0,0,1-.59,1.42,3,3,0,0,1-1.28,1,5.47,5.47,0,0,1-2.22.38,4.33,4.33,0,0,1-1.74-.32,3.29,3.29,0,0,1-1.19-.86,3.57,3.57,0,0,1-.69-1.31,6.08,6.08,0,0,1-.21-1.64v-.68h2.25v.67a3.25,3.25,0,0,0,.37,1.7,1.49,1.49,0,0,0,1.39.6,2.08,2.08,0,0,0,.89-.16,1.31,1.31,0,0,0,.56-.48,2,2,0,0,0,.28-.78,6.81,6.81,0,0,0,.07-1.06v-8.84h2.25Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3102" />
<path
d="M587.66,545a5,5,0,0,1-2-.37,4.1,4.1,0,0,1-1.48-1,4.46,4.46,0,0,1-.92-1.55,6,6,0,0,1-.31-2,5.88,5.88,0,0,1,.31-2,4.37,4.37,0,0,1,.92-1.55,4.25,4.25,0,0,1,1.48-1,5.51,5.51,0,0,1,4,0,4.25,4.25,0,0,1,1.48,1,4.37,4.37,0,0,1,.92,1.55,5.88,5.88,0,0,1,.31,2,6,6,0,0,1-.31,2,4.46,4.46,0,0,1-.92,1.55,4.1,4.1,0,0,1-1.48,1A5,5,0,0,1,587.66,545Zm0-1.62a2.25,2.25,0,0,0,1.18-.29,2.4,2.4,0,0,0,.83-.75,3.2,3.2,0,0,0,.48-1.06,4.73,4.73,0,0,0,.15-1.19,4.85,4.85,0,0,0-.15-1.19,3,3,0,0,0-.48-1,2.4,2.4,0,0,0-.83-.75,2.57,2.57,0,0,0-2.37,0,2.49,2.49,0,0,0-.83.75,3,3,0,0,0-.48,1,4.85,4.85,0,0,0-.15,1.19,4.73,4.73,0,0,0,.15,1.19,3.2,3.2,0,0,0,.48,1.06,2.49,2.49,0,0,0,.83.75A2.26,2.26,0,0,0,587.66,543.39Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3104" />
<path
d="M595.61,541.77a1.54,1.54,0,0,0,.69,1.26,2.68,2.68,0,0,0,1.42.36,5.25,5.25,0,0,0,.65,0,3.12,3.12,0,0,0,.7-.17,1.45,1.45,0,0,0,.53-.37,1,1,0,0,0-.1-1.29,2.11,2.11,0,0,0-.69-.41,9,9,0,0,0-1-.26l-1.09-.23a9,9,0,0,1-1.11-.31,3.75,3.75,0,0,1-1-.48A2.34,2.34,0,0,1,594,539a2.44,2.44,0,0,1-.25-1.17,2.08,2.08,0,0,1,.37-1.27,2.66,2.66,0,0,1,.93-.83,4,4,0,0,1,1.26-.44,6.88,6.88,0,0,1,1.33-.13,6.12,6.12,0,0,1,1.37.15,3.84,3.84,0,0,1,1.19.5,2.88,2.88,0,0,1,.88.89,3,3,0,0,1,.44,1.32h-2.14a1.27,1.27,0,0,0-.67-1,3,3,0,0,0-1.22-.25,3.44,3.44,0,0,0-.51,0,2.42,2.42,0,0,0-.56.13,1.21,1.21,0,0,0-.44.29.7.7,0,0,0-.18.5.8.8,0,0,0,.26.61,2.14,2.14,0,0,0,.69.38,6.55,6.55,0,0,0,1,.27l1.12.23a9.92,9.92,0,0,1,1.1.31,3.66,3.66,0,0,1,1,.48,2.47,2.47,0,0,1,.69.78,2.36,2.36,0,0,1,.26,1.15,2.5,2.5,0,0,1-.38,1.4,2.94,2.94,0,0,1-1,.94,4.68,4.68,0,0,1-1.35.52,6.66,6.66,0,0,1-1.46.16,6.44,6.44,0,0,1-1.63-.2,3.79,3.79,0,0,1-1.3-.6,2.91,2.91,0,0,1-.87-1,3.18,3.18,0,0,1-.33-1.43Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3106" />
<path
d="M605,540.64a3.58,3.58,0,0,0,.15,1,2.54,2.54,0,0,0,.46.88,2.11,2.11,0,0,0,.77.61,2.6,2.6,0,0,0,1.12.22A2.46,2.46,0,0,0,609,543a2.27,2.27,0,0,0,.82-1.16h1.94a3.71,3.71,0,0,1-.56,1.35,3.78,3.78,0,0,1-.95,1,3.93,3.93,0,0,1-1.25.61,5,5,0,0,1-1.45.21,4.9,4.9,0,0,1-1.94-.36,3.91,3.91,0,0,1-1.44-1,4.25,4.25,0,0,1-.88-1.54,6.23,6.23,0,0,1-.29-2,5.68,5.68,0,0,1,.31-1.89,4.83,4.83,0,0,1,.9-1.56,4.23,4.23,0,0,1,3.29-1.47,4.15,4.15,0,0,1,2,.46,4.4,4.4,0,0,1,1.45,1.22,4.87,4.87,0,0,1,.83,1.73,5.31,5.31,0,0,1,.14,2Zm4.79-1.35a3.67,3.67,0,0,0-.21-.94,2.54,2.54,0,0,0-.47-.78,2.43,2.43,0,0,0-.72-.54,2.09,2.09,0,0,0-.94-.21,2.43,2.43,0,0,0-1,.19,2.34,2.34,0,0,0-.75.52,2.68,2.68,0,0,0-.51.79,2.8,2.8,0,0,0-.2,1Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3108" />
<path
d="M612.5,535.45H614v-.77a4,4,0,0,1,.22-1.43,2,2,0,0,1,.58-.85,1.79,1.79,0,0,1,.82-.39,4.22,4.22,0,0,1,1-.1A6.16,6.16,0,0,1,618,532v1.61a2.59,2.59,0,0,0-.42-.09l-.53,0a1.22,1.22,0,0,0-.72.2.88.88,0,0,0-.29.77v1h1.74V537h-1.74v7.78H614V537H612.5Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3110" />
<path
d="M624.38,531.91h5.67a5.47,5.47,0,0,1,2.23.39,3.68,3.68,0,0,1,1.33,1,3.51,3.51,0,0,1,.64,1.3,5.74,5.74,0,0,1,.17,1.3,5.57,5.57,0,0,1-.17,1.28,3.55,3.55,0,0,1-.64,1.29,3.45,3.45,0,0,1-1.33,1,5.47,5.47,0,0,1-2.23.39h-3.42v4.93h-2.25Zm2.25,6.08h3.29a2.61,2.61,0,0,0,.77-.11,2.14,2.14,0,0,0,.73-.35,1.83,1.83,0,0,0,.54-.65,2.16,2.16,0,0,0,.21-1,2.67,2.67,0,0,0-.18-1,1.7,1.7,0,0,0-1.19-1,3.73,3.73,0,0,0-.84-.09h-3.33Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3112" />
<path
d="M636.09,535.45H638v1.8h0a2,2,0,0,1,.36-.73,3.26,3.26,0,0,1,.63-.66,3,3,0,0,1,.81-.48,2.47,2.47,0,0,1,.92-.18l.5,0,.28,0v2l-.44-.06a3.39,3.39,0,0,0-.45,0,2.25,2.25,0,0,0-1.78.81,3,3,0,0,0-.54,1,4.44,4.44,0,0,0-.2,1.37v4.43h-2Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3114" />
<path
d="M650.6,544.76h-2v-1.3h0a2.79,2.79,0,0,1-1.13,1.13,3,3,0,0,1-1.52.42,3.39,3.39,0,0,1-2.65-.91,4,4,0,0,1-.82-2.74v-5.91h2.05v5.71a2.54,2.54,0,0,0,.47,1.73,1.72,1.72,0,0,0,1.31.5,2.48,2.48,0,0,0,1.08-.2,1.88,1.88,0,0,0,.7-.53,2.06,2.06,0,0,0,.39-.8,4.05,4.05,0,0,0,.12-1v-5.4h2.05Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3116" />
<path
d="M654.31,541.77A1.56,1.56,0,0,0,655,543a2.7,2.7,0,0,0,1.42.36,5.29,5.29,0,0,0,.66,0,2.91,2.91,0,0,0,.69-.17,1.41,1.41,0,0,0,.54-.37.9.9,0,0,0,.18-.64.89.89,0,0,0-.28-.65,2.06,2.06,0,0,0-.7-.41,8.18,8.18,0,0,0-1-.26l-1.1-.23a9.34,9.34,0,0,1-1.1-.31,3.6,3.6,0,0,1-1-.48,2.23,2.23,0,0,1-.67-.79,2.44,2.44,0,0,1-.26-1.17,2.14,2.14,0,0,1,.37-1.27,2.78,2.78,0,0,1,.94-.83,4,4,0,0,1,1.26-.44,6.86,6.86,0,0,1,1.32-.13,6.21,6.21,0,0,1,1.38.15,4,4,0,0,1,1.19.5,3,3,0,0,1,.88.89,3.17,3.17,0,0,1,.44,1.32h-2.14a1.28,1.28,0,0,0-.68-1,2.9,2.9,0,0,0-1.21-.25,3.46,3.46,0,0,0-.52,0,2.45,2.45,0,0,0-.55.13,1.13,1.13,0,0,0-.44.29.7.7,0,0,0-.18.5.77.77,0,0,0,.26.61,2.09,2.09,0,0,0,.68.38,7.08,7.08,0,0,0,1,.27l1.12.23a10.57,10.57,0,0,1,1.1.31,3.82,3.82,0,0,1,1,.48,2.33,2.33,0,0,1,.68.78,2.25,2.25,0,0,1,.26,1.15,2.42,2.42,0,0,1-.38,1.4,2.94,2.94,0,0,1-1,.94,4.51,4.51,0,0,1-1.34.52,6.73,6.73,0,0,1-1.46.16,6.52,6.52,0,0,1-1.64-.2,3.74,3.74,0,0,1-1.29-.6,2.91,2.91,0,0,1-.87-1,3.18,3.18,0,0,1-.33-1.43Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3118" />
<path
d="M669.9,542.69a1.05,1.05,0,0,0,.1.54.4.4,0,0,0,.38.16h.22l.29,0v1.42l-.28.08-.35.08-.36,0a1.84,1.84,0,0,1-.31,0,1.93,1.93,0,0,1-1-.25,1.23,1.23,0,0,1-.54-.88,3.69,3.69,0,0,1-1.51.86,5.86,5.86,0,0,1-1.72.27,4.3,4.3,0,0,1-1.2-.17,3.13,3.13,0,0,1-1-.5,2.52,2.52,0,0,1-.7-.85,2.65,2.65,0,0,1-.26-1.2,2.77,2.77,0,0,1,.31-1.4,2.42,2.42,0,0,1,.83-.85,3.87,3.87,0,0,1,1.15-.44,11.51,11.51,0,0,1,1.29-.2,8.81,8.81,0,0,1,1.06-.16,5,5,0,0,0,.89-.15,1.42,1.42,0,0,0,.62-.33.93.93,0,0,0,.22-.68,1,1,0,0,0-.19-.65,1.26,1.26,0,0,0-.47-.38,2,2,0,0,0-.62-.18,5,5,0,0,0-.65,0,2.58,2.58,0,0,0-1.42.36,1.41,1.41,0,0,0-.63,1.12h-2a3.19,3.19,0,0,1,.43-1.5,3,3,0,0,1,1-.95,3.74,3.74,0,0,1,1.32-.5,7.51,7.51,0,0,1,1.51-.15,6.07,6.07,0,0,1,1.35.15,3.94,3.94,0,0,1,1.2.46,2.62,2.62,0,0,1,.85.84,2.26,2.26,0,0,1,.33,1.25Zm-2.06-2.59a2.6,2.6,0,0,1-1.15.37,13.25,13.25,0,0,0-1.37.19,3.6,3.6,0,0,0-.63.15,1.71,1.71,0,0,0-.54.27,1.16,1.16,0,0,0-.36.45,1.51,1.51,0,0,0-.14.67.89.89,0,0,0,.2.58,1.35,1.35,0,0,0,.48.37,2.29,2.29,0,0,0,.61.19,4.54,4.54,0,0,0,.6,0,3.39,3.39,0,0,0,.74-.09,2.68,2.68,0,0,0,.75-.3,2.17,2.17,0,0,0,.58-.55,1.39,1.39,0,0,0,.23-.82Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3120" />
<path
d="M606.38,507.28h3.16l3.55,10.07h0l3.45-10.07h3.13v12.86h-2.14v-9.92h0L614,520.14h-1.85l-3.57-9.92h0v9.92h-2.14Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3122" />
<path
d="M622.41,507.28h2.25v5.85l5.73-5.85h2.77L628,512.41l5.49,7.73h-2.81L626.5,514l-1.84,1.82v4.32h-2.25Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3124" />
<path
d="M637.48,512.76a4.92,4.92,0,0,0,1-.08,2.9,2.9,0,0,0,.9-.31,1.81,1.81,0,0,0,.64-.62,1.86,1.86,0,0,0,.24-1,1.64,1.64,0,0,0-.55-1.3,2.07,2.07,0,0,0-1.41-.49,2,2,0,0,0-.94.22,1.84,1.84,0,0,0-.65.59,2.39,2.39,0,0,0-.39.82,3,3,0,0,0-.11.95h-2.05a5.19,5.19,0,0,1,.34-1.7,4.1,4.1,0,0,1,.84-1.36,3.54,3.54,0,0,1,1.28-.9,4.27,4.27,0,0,1,1.71-.33,5,5,0,0,1,1.45.22,4,4,0,0,1,1.28.63,3.18,3.18,0,0,1,.91,1.05,3.07,3.07,0,0,1,.34,1.47,3.15,3.15,0,0,1-.43,1.67,2.52,2.52,0,0,1-1.35,1v0a2.57,2.57,0,0,1,1.68,1.07,3.46,3.46,0,0,1,.61,2.08,3.53,3.53,0,0,1-.36,1.61,3.67,3.67,0,0,1-1,1.2,4.41,4.41,0,0,1-1.42.77,5.37,5.37,0,0,1-1.71.27,5.27,5.27,0,0,1-1.91-.32,3.54,3.54,0,0,1-1.37-.89,3.71,3.71,0,0,1-.84-1.38,6,6,0,0,1-.31-1.8H636a2.82,2.82,0,0,0,.56,1.91,2.18,2.18,0,0,0,1.81.77,2.56,2.56,0,0,0,1.72-.59,2.05,2.05,0,0,0,.69-1.66,2.11,2.11,0,0,0-.28-1.17,1.93,1.93,0,0,0-.76-.66,3.12,3.12,0,0,0-1.05-.28,11.87,11.87,0,0,0-1.2,0Z"
transform="translate(0.14 0.14)"
fill="#fff"
id="path3126" />
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.
@@ -0,0 +1,23 @@
{
"type": "process",
"setting_id": "GP001",
"name": "0.08mm Extra Fine @Voron",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.08",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "105",
"outer_wall_speed": "120",
"inner_wall_speed": "200",
"sparse_infill_speed": "300",
"internal_solid_infill_speed": "200",
"top_surface_speed": "100",
"gap_infill_speed": "100",
"travel_speed": "350",
"compatible_printers": [
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle"
]
}
@@ -0,0 +1,23 @@
{
"type": "process",
"setting_id": "GP002",
"name": "0.12mm Fine @Voron",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.12",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "105",
"outer_wall_speed": "120",
"inner_wall_speed": "200",
"sparse_infill_speed": "300",
"internal_solid_infill_speed": "200",
"top_surface_speed": "100",
"gap_infill_speed": "100",
"travel_speed": "350",
"compatible_printers": [
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle"
]
}
@@ -0,0 +1,23 @@
{
"type": "process",
"setting_id": "GP003",
"name": "0.16mm Optimal @Voron",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.16",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "105",
"outer_wall_speed": "120",
"inner_wall_speed": "200",
"sparse_infill_speed": "300",
"internal_solid_infill_speed": "200",
"top_surface_speed": "100",
"gap_infill_speed": "100",
"travel_speed": "350",
"compatible_printers": [
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle"
]
}
@@ -0,0 +1,32 @@
{
"type": "process",
"setting_id": "GP008",
"name": "0.20mm Bambu Support W @Voron",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.20",
"enable_support": "1",
"support_interface_top_layers": "3",
"support_top_z_distance": "0.2",
"support_interface_loop_pattern": "1",
"support_interface_spacing": "0",
"support_interface_speed": "80",
"support_filament": "0",
"support_interface_filament": "0",
"enable_prime_tower": "1",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "105",
"outer_wall_speed": "120",
"inner_wall_speed": "200",
"sparse_infill_speed": "300",
"internal_solid_infill_speed": "200",
"top_surface_speed": "100",
"gap_infill_speed": "100",
"travel_speed": "350",
"compatible_printers": [
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle"
]
}
@@ -0,0 +1,20 @@
{
"type": "process",
"setting_id": "GP004",
"name": "0.20mm Standard @MK3S",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.20",
"initial_layer_speed": "20",
"initial_layer_infill_speed": "25",
"outer_wall_speed": "35",
"inner_wall_speed": "60",
"sparse_infill_speed": "200",
"internal_solid_infill_speed": "200",
"top_surface_speed": "50",
"gap_infill_speed": "40",
"travel_speed": "180",
"compatible_printers": [
"Prusa MK3S 0.4 nozzle"
]
}
@@ -0,0 +1,23 @@
{
"type": "process",
"setting_id": "GP004",
"name": "0.20mm Standard @Voron",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.20",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "105",
"outer_wall_speed": "120",
"inner_wall_speed": "200",
"sparse_infill_speed": "300",
"internal_solid_infill_speed": "200",
"top_surface_speed": "100",
"gap_infill_speed": "100",
"travel_speed": "350",
"compatible_printers": [
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle"
]
}
@@ -0,0 +1,23 @@
{
"type": "process",
"setting_id": "GP005",
"name": "0.24mm Draft @Voron",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.24",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "105",
"outer_wall_speed": "120",
"inner_wall_speed": "200",
"sparse_infill_speed": "300",
"internal_solid_infill_speed": "200",
"top_surface_speed": "100",
"gap_infill_speed": "100",
"travel_speed": "350",
"compatible_printers": [
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle"
]
}
@@ -0,0 +1,23 @@
{
"type": "process",
"setting_id": "GP006",
"name": "0.28mm Extra Draft @Voron",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_bbl_0.28",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "105",
"outer_wall_speed": "120",
"inner_wall_speed": "200",
"sparse_infill_speed": "300",
"internal_solid_infill_speed": "200",
"top_surface_speed": "100",
"gap_infill_speed": "100",
"travel_speed": "350",
"compatible_printers": [
"Voron 2.4 250 0.4 nozzle",
"Voron 2.4 300 0.4 nozzle",
"Voron 2.4 350 0.4 nozzle",
"Voron 0.1 0.4 nozzle"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 KiB

+19 -6
View File
@@ -1219,9 +1219,6 @@ wxBoxSizer* MainFrame::create_side_tools()
#endif
SideButton* print_plate_btn = new SideButton(p, _L("Print"), "");
print_plate_btn->SetCornerRadius(0);
SideButton* export_sliced_file_btn = new SideButton(p, _L("Export sliced file"), "");
export_sliced_file_btn->SetCornerRadius(0);
print_plate_btn->Bind(wxEVT_BUTTON, [this, p](wxCommandEvent&) {
m_print_btn->SetLabel(_L("Print"));
m_print_select = ePrintPlate;
@@ -1231,8 +1228,10 @@ wxBoxSizer* MainFrame::create_side_tools()
p->Dismiss();
});
export_sliced_file_btn->Bind(wxEVT_BUTTON, [this, p](wxCommandEvent&) {
m_print_btn->SetLabel(_L("Export Sliced File"));
SideButton* export_sliced_file_3mf_btn = new SideButton(p, _L("Export sliced file (.3mf)"), "");
export_sliced_file_3mf_btn->SetCornerRadius(0);
export_sliced_file_3mf_btn->Bind(wxEVT_BUTTON, [this, p](wxCommandEvent&) {
m_print_btn->SetLabel(_L("Export Sliced File (.3mf)"));
m_print_select = eExportSlicedFile;
if (m_print_enable)
m_print_enable = get_enable_print_status();
@@ -1240,11 +1239,25 @@ wxBoxSizer* MainFrame::create_side_tools()
this->Layout();
p->Dismiss();
});
SideButton* export_sliced_file_gcode_btn = new SideButton(p, _L("Export sliced file (.gcode)"), "");
export_sliced_file_gcode_btn->SetCornerRadius(0);
export_sliced_file_gcode_btn->Bind(wxEVT_BUTTON, [this, p](wxCommandEvent&) {
m_print_btn->SetLabel(_L("Export Sliced File (.gcode)"));
m_print_select = eExportGcode;
if (m_print_enable)
m_print_enable = get_enable_print_status();
m_print_btn->Enable(m_print_enable);
this->Layout();
p->Dismiss();
});
#if ENABEL_PRINT_ALL
p->append_button(print_all_btn);
#endif
p->append_button(print_plate_btn);
p->append_button(export_sliced_file_btn);
p->append_button(export_sliced_file_3mf_btn);
p->append_button(export_sliced_file_gcode_btn);
p->Popup(m_print_btn);
}
);
+2 -2
View File
@@ -1,8 +1,8 @@
# Included by CMakeLists, edited by the build script
# (the version numbers are generated by the build script from the git current label)
set(SLIC3R_APP_NAME "BambuStudio")
set(SLIC3R_APP_KEY "BambuStudio")
set(SLIC3R_APP_NAME "BambuStudio SoftFever")
set(SLIC3R_APP_KEY "BambuStudio-SoftFever")
if(NOT DEFINED BBL_RELEASE_TO_PUBLIC)
set(BBL_RELEASE_TO_PUBLIC "0")